registrations.hpp 490 B

123456789101112131415161718192021
  1. // SPDX-License-Identifier: BSD-2-Clause
  2. #ifndef HDL_GRAPH_SLAM_REGISTRATIONS_HPP
  3. #define HDL_GRAPH_SLAM_REGISTRATIONS_HPP
  4. #include <ros/ros.h>
  5. #include <pcl/registration/registration.h>
  6. namespace hdl_graph_slam {
  7. /**
  8. * @brief select a scan matching algorithm according to rosparams
  9. * @param pnh
  10. * @return selected scan matching
  11. */
  12. pcl::Registration<pcl::PointXYZI, pcl::PointXYZI>::Ptr select_registration_method(ros::NodeHandle& pnh);
  13. } // namespace hdl_graph_slam
  14. #endif //