diff --git a/oh_my_loam/configs/config.yaml b/oh_my_loam/configs/config.yaml index b189366..34bb392 100644 --- a/oh_my_loam/configs/config.yaml +++ b/oh_my_loam/configs/config.yaml @@ -33,6 +33,6 @@ odometer_config: mapper_config: vis: false verbose: false - map_shape: [11, 21, 21] + map_shape: [3, 21, 21] map_step_: 50 # meter - submap_shape: 5 + submap_shape: [1, 5, 5] diff --git a/oh_my_loam/mapper/mapper.cc b/oh_my_loam/mapper/mapper.cc index 4e9addd..b3ff552 100644 --- a/oh_my_loam/mapper/mapper.cc +++ b/oh_my_loam/mapper/mapper.cc @@ -21,9 +21,11 @@ bool Mapper::Init() { is_vis_ = config["vis"].as() && config_["vis"].as(); verbose_ = config_["vis"].as(); AINFO << "Mapping visualizer: " << (is_vis_ ? "ON" : "OFF"); - std::vector shape = YAMLConfig::GetSeq(config_["map_shape"]); - corn_map_.reset(new Map(shape, config_["map_step"].as())); - surf_map_.reset(new Map(shape, config_["map_step"].as())); + map_shape_ = YAMLConfig::GetSeq(config_["map_shape"]); + submap_shape_ = YAMLConfig::GetSeq(config_["submap_shape"]); + map_step_ = config_["map_step"].as(); + corn_map_.reset(new Map(map_shape_, map_step_)); + surf_map_.reset(new Map(map_shape_, map_step_)); return true; } @@ -79,30 +81,31 @@ void Mapper::Run(const TPointCloudConstPtr &cloud_corn_in, } void Mapper::AdjustMap(const Index &index) { - std::vector map_shape = corn_map_->Shape(); - int min_idx = config_["submap_shape"].as() / 2 + 1; - int max_idx_z = map_shape[0] - min_idx - 1; - if (index.k < min_idx) { - corn_map_->ShiftZ(index.k - min_idx); - surf_map_->ShiftZ(index.k - min_idx); + int min_idx_z = submap_shape_[0] / 2 + 1; + int max_idx_z = map_shape_[0] - min_idx_z - 1; + if (index.k < min_idx_z) { + corn_map_->ShiftZ(index.k - min_idx_z); + surf_map_->ShiftZ(index.k - min_idx_z); } if (index.k > max_idx_z) { corn_map_->ShiftZ(index.k - max_idx_z); surf_map_->ShiftZ(index.k - max_idx_z); } - int max_idx_y = map_shape[1] - min_idx - 1; - if (index.j < min_idx) { - corn_map_->ShiftY(index.j - min_idx); - surf_map_->ShiftY(index.j - min_idx); + int min_idx_y = submap_shape_[0] / 2 + 1; + int max_idx_y = map_shape_[1] - min_idx_y - 1; + if (index.j < min_idx_y) { + corn_map_->ShiftY(index.j - min_idx_y); + surf_map_->ShiftY(index.j - min_idx_y); } if (index.j > max_idx_y) { corn_map_->ShiftY(index.j - max_idx_y); surf_map_->ShiftY(index.j - max_idx_y); } - int max_idx_x = map_shape[2] - min_idx - 1; - if (index.i < min_idx) { - corn_map_->ShiftX(index.i - min_idx); - surf_map_->ShiftX(index.i - min_idx); + int min_idx_x = submap_shape_[0] / 2 + 1; + int max_idx_x = map_shape_[2] - min_idx_x - 1; + if (index.i < min_idx_x) { + corn_map_->ShiftX(index.i - min_idx_x); + surf_map_->ShiftX(index.i - min_idx_x); } if (index.i > max_idx_x) { corn_map_->ShiftX(index.i - max_idx_x); diff --git a/oh_my_loam/mapper/mapper.h b/oh_my_loam/mapper/mapper.h index 165a314..be25504 100644 --- a/oh_my_loam/mapper/mapper.h +++ b/oh_my_loam/mapper/mapper.h @@ -73,8 +73,12 @@ class Mapper { mutable std::shared_mutex corn_map_mutex_; mutable std::shared_mutex surf_map_mutex_; + std::vector map_shape_, submap_shape_; + double map_step_; std::unique_ptr corn_map_; std::unique_ptr surf_map_; + pcl::KdTreeFLANN kdtree_corn_map_; + pcl::KdTreeFLANN kdtree_surf_map_; mutable std::mutex state_mutex_; Pose3d pose_odom2map_;