cpp-toolbox  0.0.1
A toolbox library for C++
Loading...
Searching...
No Matches
features.hpp
Go to the documentation of this file.
1#pragma once
2
22
23namespace toolbox::pcl
24{
25
73// 曲率关键点提取器类型别名 / Curvature keypoint extractor type aliases
74template<typename DataType>
76
77template<typename DataType>
79
80template<typename DataType>
82
83// ISS关键点提取器类型别名 / ISS keypoint extractor type aliases
84template<typename DataType>
86
87template<typename DataType>
89
90template<typename DataType>
92
93// Harris3D关键点提取器类型别名 / Harris3D keypoint extractor type aliases
94template<typename DataType>
96
97template<typename DataType>
99
100template<typename DataType>
102
103// SIFT3D关键点提取器类型别名 / SIFT3D keypoint extractor type aliases
104template<typename DataType>
106
107template<typename DataType>
109
110template<typename DataType>
112
113// LOAM特征提取器类型别名 / LOAM feature extractor type aliases
114template<typename DataType>
116
117template<typename DataType>
119
120template<typename DataType>
122
123// SUSAN关键点提取器类型别名 / SUSAN keypoint extractor type aliases
124template<typename DataType>
126
127template<typename DataType>
129
130template<typename DataType>
132
133// AGAST关键点提取器类型别名 / AGAST keypoint extractor type aliases
134template<typename DataType>
136
137template<typename DataType>
139
140template<typename DataType>
142
143// MLS关键点提取器类型别名 / MLS keypoint extractor type aliases
144template<typename DataType>
146
147template<typename DataType>
149
150template<typename DataType>
152
153} // namespace toolbox::pcl
AGAST (Adaptive and Generic Accelerated Segment Test) 3D关键点提取器 / AGAST (Adaptive and Generic Accelera...
Definition agast_keypoints.hpp:26
基于曲率的关键点提取器 / Curvature-based keypoint extractor
Definition curvature_keypoints.hpp:61
Harris 3D 关键点提取器 / Harris 3D keypoint extractor.
Definition harris3d_keypoints.hpp:63
ISS (Intrinsic Shape Signatures) 关键点提取器 / ISS (Intrinsic Shape Signatures) keypoint extractor.
Definition iss_keypoints.hpp:61
LOAM (Lidar Odometry and Mapping) 特征提取器 / LOAM (Lidar Odometry and Mapping) feature extractor.
Definition loam_feature_extractor.hpp:26
MLS (Moving Least Squares) 关键点提取器 / MLS (Moving Least Squares) keypoint extractor.
Definition mls_keypoints.hpp:28
SIFT 3D (Scale-Invariant Feature Transform) 关键点提取器 / SIFT 3D (Scale-Invariant Feature Transform) keyp...
Definition sift3d_keypoints.hpp:26
SUSAN (Smallest Univalue Segment Assimilating Nucleus) 3D关键点提取器 / SUSAN (Smallest Univalue Segment As...
Definition susan_keypoints.hpp:27
Definition base_correspondence_generator.hpp:18