KCP
An efficient and effective 3D laser scan matching
keypoint.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 namespace kcp {
10 
15 namespace keypoint {
16 
21 class RangeImage {
22  protected:
27  Eigen::MatrixX3d cloud;
28 
33  std::vector<int> channel;
34 
41 
46  float min_vfov_deg;
47 
52  float max_vfov_deg;
53 
59 
64  Eigen::MatrixXi image_indices;
65 
70  std::vector<float> image_depth_sequence;
71 
76  std::vector<int> image_point_indices_sequence;
77 
82  std::vector<int> image_col_indices_sequence;
83 
88  std::vector<int> channel_start_indices;
89 
94  std::vector<int> channel_end_indices;
95 
101 
106  void calculate_range_image();
107 
108  public:
122  RangeImage(Eigen::MatrixX3d cloud,
123  int n_channels = 32,
124  float min_vfov_deg = -30.0,
125  float max_vfov_deg = 10.0,
126  int hfov_resolution = 1800);
127 
133  const Eigen::MatrixX3d &get_cloud() const { return this->cloud; }
134 
140  int get_n_channels() const { return this->n_channels; }
141 
147  size_t get_image_sequence_size() const { return this->image_depth_sequence.size(); }
148 
154  const Eigen::MatrixXi &get_image_indices() const { return this->image_indices; }
155 
161  const std::vector<float> &get_image_depth_sequence() const { return this->image_depth_sequence; }
162 
168  const std::vector<int> &get_image_point_indices_sequence() const { return this->image_point_indices_sequence; }
169 
175  const std::vector<int> &get_image_col_indices_sequence() const { return this->image_col_indices_sequence; }
176 
182  const std::vector<int> &get_channel_start_indices() const { return this->channel_start_indices; }
183 
189  const std::vector<int> &get_channel_end_indices() const { return this->channel_end_indices; }
190 };
191 
200  public:
205  enum class Label {
206  UNDEFINED,
207  NORMAL,
208  OCCLUDED,
209  PARALLEL,
210  CORNER,
211  PLANE,
212  AMBIGUOUS
213  };
214 
215  protected:
221 
226  std::vector<std::pair<float, int>> curvature;
227 
232  std::vector<Label> label;
233 
240 
247 
252  Eigen::MatrixX3d corner_points;
253 
258  Eigen::MatrixX3d plane_points;
259 
264  std::vector<int> corner_point_indices;
265 
270  std::vector<int> plane_point_indices;
271 
278 
279  public:
290 
309  MultiScaleCurvature(Eigen::MatrixX3d cloud,
310  int n_channels = 32,
311  float min_vfov_deg = -30.0,
312  float max_vfov_deg = 10.0,
313  int hfov_resolution = 1800,
314  float corner_threshold = 30.0,
315  float plane_threshold = 0.1);
316 
322  const RangeImage &get_range_image() const { return this->range_image; }
323 
329  const Eigen::MatrixX3d &get_corner_points() const { return this->corner_points; }
330 
336  const Eigen::MatrixX3d &get_plane_points() const { return this->plane_points; }
337 
343  const std::vector<int> &get_corner_point_indices() const { return this->corner_point_indices; }
344 
350  const std::vector<int> &get_plane_point_indices() const { return this->plane_point_indices; }
351 
357  const std::vector<std::pair<float, int>> &get_curvature() const { return this->curvature; }
358 };
359 
360 }; // namespace keypoint
361 
362 }; // namespace kcp
The multi-scale curvature class for extracting corner points and plane points based on the range imag...
Definition: keypoint.hpp:199
RangeImage range_image
The range image.
Definition: keypoint.hpp:220
const std::vector< std::pair< float, int > > & get_curvature() const
Get the multi-scale curvatures.
Definition: keypoint.hpp:357
MultiScaleCurvature(RangeImage range_image, float corner_threshold=30.0, float plane_threshold=0.1)
Construct a new MultiScaleCurvature object.
Definition: keypoint.cpp:97
const std::vector< int > & get_plane_point_indices() const
Get the plane points in terms of their indices.
Definition: keypoint.hpp:350
std::vector< std::pair< float, int > > curvature
Multi-scale curvatures stored as a vector of {kappa, index}.
Definition: keypoint.hpp:226
float corner_threshold
The threshold (lower-bound of multi-scale curvature) to determine if the point is a corner point.
Definition: keypoint.hpp:239
const Eigen::MatrixX3d & get_corner_points() const
Get the corner points in terms of position.
Definition: keypoint.hpp:329
const RangeImage & get_range_image() const
Get the range image.
Definition: keypoint.hpp:322
Eigen::MatrixX3d corner_points
Corner points in terms of position.
Definition: keypoint.hpp:252
Label
Enum class of point labels.
Definition: keypoint.hpp:205
const std::vector< int > & get_corner_point_indices() const
Get the corner points in terms of their indices.
Definition: keypoint.hpp:343
std::vector< Label > label
Labels of the points.
Definition: keypoint.hpp:232
float plane_threshold
The threshold (upper-bound of multi-scale curvature) to determine if the point is a plane point.
Definition: keypoint.hpp:246
std::vector< int > corner_point_indices
Corner points in terms of their indices.
Definition: keypoint.hpp:264
void calculate_multi_scale_curvature()
Compute the multi-scale curvature and choose corner points and plane points.
Definition: keypoint.cpp:133
Eigen::MatrixX3d plane_points
Plane points in terms of position.
Definition: keypoint.hpp:258
std::vector< int > plane_point_indices
Plane points in terms of their indices.
Definition: keypoint.hpp:270
const Eigen::MatrixX3d & get_plane_points() const
Get the plane points in terms of position.
Definition: keypoint.hpp:336
A range image of a point cloud based on the spherical projection.
Definition: keypoint.hpp:21
std::vector< int > image_point_indices_sequence
The raw indices of points ordered by channels.
Definition: keypoint.hpp:76
const std::vector< int > & get_channel_end_indices() const
Get the ending index vector of all channels.
Definition: keypoint.hpp:189
Eigen::MatrixX3d cloud
The point cloud.
Definition: keypoint.hpp:27
std::vector< int > image_col_indices_sequence
The column (horizontal) indices of points ordered by channels.
Definition: keypoint.hpp:82
const std::vector< int > & get_image_point_indices_sequence() const
Get the raw indices of points ordered by channels.
Definition: keypoint.hpp:168
void calculate_range_image()
Compute the corresponding range image of the given point cloud.
Definition: keypoint.cpp:55
size_t get_image_sequence_size() const
Get the size of parameterized points for the range image.
Definition: keypoint.hpp:147
void calculate_point_cloud_properties()
Compute the polar index of each point.
Definition: keypoint.cpp:39
float min_vfov_deg
The minimum vertical field of view (V-FOV) of the given point cloud.
Definition: keypoint.hpp:46
std::vector< int > channel
Channel indices of raw points.
Definition: keypoint.hpp:33
int get_n_channels() const
Get the number of channels.
Definition: keypoint.hpp:140
const std::vector< int > & get_image_col_indices_sequence() const
Get the column (horizontal) indices of points ordered by channels.
Definition: keypoint.hpp:175
RangeImage(Eigen::MatrixX3d cloud, int n_channels=32, float min_vfov_deg=-30.0, float max_vfov_deg=10.0, int hfov_resolution=1800)
Construct a new RangeImage object.
Definition: keypoint.cpp:16
std::vector< int > channel_end_indices
The ending index vector of all channels.
Definition: keypoint.hpp:94
int hfov_resolution
The resolution of 360-degree horizontal field of view.
Definition: keypoint.hpp:58
float max_vfov_deg
The maximum vertical field of view (V-FOV) of the given point cloud.
Definition: keypoint.hpp:52
const Eigen::MatrixXi & get_image_indices() const
Get the range image whose entry indicates the raw index of point.
Definition: keypoint.hpp:154
Eigen::MatrixXi image_indices
The range image whose entry indicates the raw index of point.
Definition: keypoint.hpp:64
std::vector< float > image_depth_sequence
The depths of points ordered by channels.
Definition: keypoint.hpp:70
const std::vector< int > & get_channel_start_indices() const
Get the starting index vector of all channels.
Definition: keypoint.hpp:182
int n_channels
The number of channels (height of the range image). It is usually set to be the number of LiDAR beams...
Definition: keypoint.hpp:40
const Eigen::MatrixX3d & get_cloud() const
Get the point cloud.
Definition: keypoint.hpp:133
std::vector< int > channel_start_indices
The starting index vector of all channels.
Definition: keypoint.hpp:88
const std::vector< float > & get_image_depth_sequence() const
Get the depths of points ordered by channels.
Definition: keypoint.hpp:161
Namespace for the KCP library.
Definition: common.hpp:15