KCP
An efficient and effective 3D laser scan matching
solver.hpp
1 // Copyright 2021 Yu-Kai Lin. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4 
5 #pragma once
6 
7 #include "kcp/common.hpp"
8 
9 #include <teaser/registration.h>
10 
11 namespace kcp {
12 
18  protected:
23  Eigen::Matrix4d solution;
24 
25  public:
30  AbstractSolver() : solution(Eigen::Matrix4d::Identity()){};
31 
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;
44 
50  virtual const Eigen::Matrix4d& get_solution() const { return this->solution; }
51 };
52 
68 class KCP : public AbstractSolver {
69  public:
74  using TEASER = teaser::RobustRegistrationSolver;
75 
80  struct Params {
88  TEASER::Params teaser;
89 
94  size_t k;
95 
102  bool verbose;
103 
108  Params() {
109  k = 2;
110  verbose = false;
111  teaser.noise_bound = 0.06;
112  teaser.cbar2 = 1;
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;
122  }
123  };
124 
125  protected:
131 
137 
143 
151 
152  public:
159 
165  KCP::Params& get_params() { return this->params; }
166 
173 
179  const std::vector<int>& get_inlier_correspondence_indices() const { return this->inlier_correspondence_indices; }
180 
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;
193 };
194 
195 }; // namespace kcp
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