// SPDX-License-Identifier: BSD-2-Clause #ifndef HDL_GRAPH_SLAM_REGISTRATIONS_HPP #define HDL_GRAPH_SLAM_REGISTRATIONS_HPP #include #include namespace hdl_graph_slam { /** * @brief select a scan matching algorithm according to rosparams * @param pnh * @return selected scan matching */ pcl::Registration::Ptr select_registration_method(ros::NodeHandle& pnh); } // namespace hdl_graph_slam #endif //