7 #include "kcp/common.hpp"
311 float min_vfov_deg = -30.0,
312 float max_vfov_deg = 10.0,
313 int hfov_resolution = 1800,
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