Skip to content

Commit

Permalink
Revert "Merge branch 'main' into tiziano/bonxai_minimal"
Browse files Browse the repository at this point in the history
This reverts commit da104ce, reversing
changes made to 9b84286.
  • Loading branch information
tizianoGuadagnino committed Jan 9, 2025
1 parent 920fb8f commit 475d08d
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions cpp/kinematic_icp/pipeline/KinematicICP.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ class KinematicICP {
config.use_adaptive_threshold,
config.fixed_threshold),
config_(config),
local_map_(config.voxel_size, config.max_range, config.max_points_per_voxel) {}
local_map_(config.voxel_size, config.max_range, config.max_points_per_voxel),
preprocessor_(config.max_range, config.min_range, config.deskew, config.max_num_threads) {
}

Vector3dVectorTuple RegisterFrame(const std::vector<Eigen::Vector3d> &frame,
const std::vector<double> &timestamps,
Expand All @@ -98,21 +100,13 @@ class KinematicICP {

protected:
Sophus::SE3d last_pose_;
// Kinematic module
// Kinematic Modules
KinematicRegistration registration_;
CorrespondenceThreshold correspondence_threshold_;
Config config_;
<<<<<<< HEAD
SparseVoxelGrid local_map_;
=======
<<<<<<< HEAD
// KISS-ICP pipeline modules
// Kiss Module
kiss_icp::Preprocessor preprocessor_;
kiss_icp::VoxelHashMap local_map_;
=======
SparseVoxelGrid local_map_;
>>>>>>> 01188b4 (At least replicate the functionalities of kiss map, need to test and)
>>>>>>> 7630bc5 (At least replicate the functionalities of kiss map, need to test and)
};

} // namespace kinematic_icp::pipeline

0 comments on commit 475d08d

Please sign in to comment.