7 #include "kcp/common.hpp"
11 #define _USE_MATH_DEFINES
18 #define deg2red(deg) ((deg)*M_PI / 180)
19 #define red2deg(red) ((red)*180 / M_PI)
21 #define MAX(A, B) ((A) > (B) ? A : B)
22 #define MIN(A, B) ((A) < (B) ? A : B)
24 #define l2Norm2D(x, y) sqrt(pow(x, 2) + pow(y, 2))
25 #define l2Norm3D(x, y, z) sqrt(pow(x, 2) + pow(y, 2) + pow(z, 2))
26 #define _GET_L2NORM_MACRO(_1, _2, _3, NAME, ...) NAME
28 _GET_L2NORM_MACRO(__VA_ARGS__, l2Norm3D, l2Norm2D) \
31 #define CYCLIC_INDEX(i, start, end) ((i < start) ? (end - (start - (i))) : ((i > end) ? start + (i - (end)) : i))
45 std::shared_ptr<Correspondences>
47 const Eigen::MatrixX3d& dst,
48 const Eigen::MatrixXd& src_feature,
49 const Eigen::MatrixXd& dst_feature,
Namespace for the KCP library.
Definition: common.hpp:15
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.
Definition: utility.cpp:12