7 #include "kcp/common.hpp"
9 #include <teaser/registration.h>
40 virtual void solve(
const Eigen::MatrixX3d& src,
41 const Eigen::MatrixX3d& dst,
42 const Eigen::MatrixXd& src_feature,
43 const Eigen::MatrixXd& dst_feature) = 0;
74 using TEASER = teaser::RobustRegistrationSolver;
111 teaser.noise_bound = 0.06;
113 teaser.estimate_scaling =
false;
114 teaser.rotation_gnc_factor = 1.4;
115 teaser.rotation_estimation_algorithm = TEASER::ROTATION_ESTIMATION_ALGORITHM::GNC_TLS;
116 teaser.rotation_max_iterations = 100;
117 teaser.rotation_cost_threshold = 1e-6;
118 teaser.kcore_heuristic_threshold = 0.5;
119 teaser.use_max_clique =
true;
120 teaser.max_clique_exact_solution =
true;
121 teaser.max_clique_time_limit = 3600;
189 virtual void solve(
const Eigen::MatrixX3d& src,
190 const Eigen::MatrixX3d& dst,
191 const Eigen::MatrixXd& src_feature,
192 const Eigen::MatrixXd& dst_feature)
override;
Abstract class for point cloud registration solvers.
Definition: solver.hpp:17
virtual const Eigen::Matrix4d & get_solution() const
Get the solution of the registration.
Definition: solver.hpp:50
virtual void solve(const Eigen::MatrixX3d &src, const Eigen::MatrixX3d &dst, const Eigen::MatrixXd &src_feature, const Eigen::MatrixXd &dst_feature)=0
Abstract function to trigger a registration method.
AbstractSolver()
Constructor.
Definition: solver.hpp:30
Eigen::Matrix4d solution
The estimation result.
Definition: solver.hpp:23
The KCP-TEASER registration approach.
Definition: solver.hpp:68
Correspondences initial_correspondences
The initial set of k-closest-points correspondences.
Definition: solver.hpp:142
const std::vector< int > & get_inlier_correspondence_indices() const
Get the inlier correspondence indices.
Definition: solver.hpp:179
teaser::RobustRegistrationSolver TEASER
Type alias of the TEASER++ solver.
Definition: solver.hpp:74
KCP(KCP::Params params)
Construct a new KCP object.
Definition: solver.hpp:158
KCP::Params & get_params()
Get the parameters.
Definition: solver.hpp:165
TEASER solver
The TEASER++ solver.
Definition: solver.hpp:130
std::vector< int > inlier_correspondence_indices
The inlier correspondence indices with respect to initial_correspondences. The set is estimated by th...
Definition: solver.hpp:150
KCP::Params params
Parameters for the KCP-TEASER solver.
Definition: solver.hpp:136
const Correspondences & get_initial_correspondences() const
Get the initial set of correspondences.
Definition: solver.hpp:172
virtual void solve(const Eigen::MatrixX3d &src, const Eigen::MatrixX3d &dst, const Eigen::MatrixXd &src_feature, const Eigen::MatrixXd &dst_feature) override
The main function to trigger the KCP-TEASER registration approach.
Definition: solver.cpp:14
Namespace for the KCP library.
Definition: common.hpp:15
Data structure for point correspondences.
Definition: common.hpp:21
Type of parameters for the KCP-TEASER solver.
Definition: solver.hpp:80
Params()
Construct a new KCP::Params object.
Definition: solver.hpp:108
TEASER::Params teaser
Parameters for the original TEASER++ solver. The most frequently modified parameter in KCP-TEASER is ...
Definition: solver.hpp:88
bool verbose
Enabling debug messages. Default by false.
Definition: solver.hpp:102
size_t k
The number of closest points for each source point. Default by 2.
Definition: solver.hpp:94