KCP
An efficient and effective 3D laser scan matching
utility.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 <Eigen/Core>
10 
11 #define _USE_MATH_DEFINES
12 #include <cmath>
13 #include <map>
14 #include <memory>
15 #include <stdexcept>
16 #include <vector>
17 
18 #define deg2red(deg) ((deg)*M_PI / 180)
19 #define red2deg(red) ((red)*180 / M_PI)
20 
21 #define MAX(A, B) ((A) > (B) ? A : B)
22 #define MIN(A, B) ((A) < (B) ? A : B)
23 
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
27 #define l2Norm(...) \
28  _GET_L2NORM_MACRO(__VA_ARGS__, l2Norm3D, l2Norm2D) \
29  (__VA_ARGS__)
30 
31 #define CYCLIC_INDEX(i, start, end) ((i < start) ? (end - (start - (i))) : ((i > end) ? start + (i - (end)) : i))
32 
33 namespace kcp {
34 
45 std::shared_ptr<Correspondences>
46 get_kcp_correspondences(const Eigen::MatrixX3d& src,
47  const Eigen::MatrixX3d& dst,
48  const Eigen::MatrixXd& src_feature,
49  const Eigen::MatrixXd& dst_feature,
50  size_t k);
51 
52 }; // namespace kcp
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