KCP
An efficient and effective 3D laser scan matching
kcp Namespace Reference

Namespace for the KCP library. More...

Namespaces

 keypoint
 Namespace for the keypoint extraction.
 

Classes

struct  Correspondences
 Data structure for point correspondences. More...
 
class  AbstractSolver
 Abstract class for point cloud registration solvers. More...
 
class  KCP
 The KCP-TEASER registration approach. More...
 

Functions

std::shared_ptr< Correspondencesget_kcp_correspondences (const Eigen::MatrixX3d &src, const Eigen::MatrixX3d &dst, const Eigen::MatrixXd &src_feature, const Eigen::MatrixXd &dst_feature, size_t k)
 Get the set of k-closest-points correspondences with kd-tree. More...
 

Detailed Description

Namespace for the KCP library.

Function Documentation

◆ get_kcp_correspondences()

std::shared_ptr< Correspondences > kcp::get_kcp_correspondences ( const Eigen::MatrixX3d &  src,
const Eigen::MatrixX3d &  dst,
const Eigen::MatrixXd &  src_feature,
const Eigen::MatrixXd &  dst_feature,
size_t  k 
)

Get the set of k-closest-points correspondences with kd-tree.

Parameters
srcThe source point cloud.
dstThe target point cloud.
src_featureThe source feature cloud used to compute distances.
dst_featureThe target feature cloud used to compute distances.
kThe number of closest points for each source point.
Returns
Shared pointer to the set of correspondences.