Namespace for the KCP library.
More...
|
| keypoint |
| Namespace for the keypoint extraction.
|
|
|
std::shared_ptr< Correspondences > | 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. More...
|
|
Namespace for the KCP library.
◆ 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
-
src | The source point cloud. |
dst | The target point cloud. |
src_feature | The source feature cloud used to compute distances. |
dst_feature | The target feature cloud used to compute distances. |
k | The number of closest points for each source point. |
- Returns
- Shared pointer to the set of correspondences.