Point Cloud Library (PCL)
1.9.1
|
39 #ifndef PCL_IMPL_POINT_TYPES_HPP_
40 #define PCL_IMPL_POINT_TYPES_HPP_
43 # pragma GCC system_header
50 #define PCL_POINT_TYPES \
60 (pcl::InterestPoint) \
64 (pcl::PointXYZRGBNormal) \
65 (pcl::PointXYZINormal) \
66 (pcl::PointXYZLNormal) \
67 (pcl::PointWithRange) \
68 (pcl::PointWithViewpoint) \
69 (pcl::MomentInvariants) \
70 (pcl::PrincipalRadiiRSD) \
72 (pcl::PrincipalCurvatures) \
73 (pcl::PFHSignature125) \
74 (pcl::PFHRGBSignature250) \
76 (pcl::CPPFSignature) \
77 (pcl::PPFRGBSignature) \
78 (pcl::NormalBasedSignature12) \
79 (pcl::FPFHSignature33) \
80 (pcl::VFHSignature308) \
81 (pcl::GASDSignature512) \
82 (pcl::GASDSignature984) \
83 (pcl::GASDSignature7992) \
84 (pcl::GRSDSignature21) \
85 (pcl::ESFSignature640) \
86 (pcl::BRISKSignature512) \
88 (pcl::IntensityGradient) \
89 (pcl::PointWithScale) \
91 (pcl::ShapeContext1980) \
92 (pcl::UniqueShapeContext1960) \
96 (pcl::ReferenceFrame) \
100 #define PCL_RGB_POINT_TYPES \
101 (pcl::PointXYZRGBA) \
103 (pcl::PointXYZRGBL) \
104 (pcl::PointXYZRGBNormal) \
108 #define PCL_XYZ_POINT_TYPES \
112 (pcl::PointXYZRGBA) \
114 (pcl::PointXYZRGBL) \
116 (pcl::InterestPoint) \
118 (pcl::PointXYZRGBNormal) \
119 (pcl::PointXYZINormal) \
120 (pcl::PointXYZLNormal) \
121 (pcl::PointWithRange) \
122 (pcl::PointWithViewpoint) \
123 (pcl::PointWithScale) \
128 #define PCL_XYZL_POINT_TYPES \
130 (pcl::PointXYZRGBL) \
131 (pcl::PointXYZLNormal)
134 #define PCL_NORMAL_POINT_TYPES \
137 (pcl::PointXYZRGBNormal) \
138 (pcl::PointXYZINormal) \
139 (pcl::PointXYZLNormal) \
143 #define PCL_FEATURE_POINT_TYPES \
144 (pcl::PFHSignature125) \
145 (pcl::PFHRGBSignature250) \
146 (pcl::PPFSignature) \
147 (pcl::CPPFSignature) \
148 (pcl::PPFRGBSignature) \
149 (pcl::NormalBasedSignature12) \
150 (pcl::FPFHSignature33) \
151 (pcl::VFHSignature308) \
152 (pcl::GASDSignature512) \
153 (pcl::GASDSignature984) \
154 (pcl::GASDSignature7992) \
155 (pcl::GRSDSignature21) \
156 (pcl::ESFSignature640) \
157 (pcl::BRISKSignature512) \
165 typedef Eigen::Map<Eigen::Array4f, Eigen::Aligned>
Array4fMap;
179 #define PCL_ADD_UNION_POINT4D \
180 union EIGEN_ALIGN16 { \
189 #define PCL_ADD_EIGEN_MAPS_POINT4D \
190 inline pcl::Vector3fMap getVector3fMap () { return (pcl::Vector3fMap (data)); } \
191 inline pcl::Vector3fMapConst getVector3fMap () const { return (pcl::Vector3fMapConst (data)); } \
192 inline pcl::Vector4fMap getVector4fMap () { return (pcl::Vector4fMap (data)); } \
193 inline pcl::Vector4fMapConst getVector4fMap () const { return (pcl::Vector4fMapConst (data)); } \
194 inline pcl::Array3fMap getArray3fMap () { return (pcl::Array3fMap (data)); } \
195 inline pcl::Array3fMapConst getArray3fMap () const { return (pcl::Array3fMapConst (data)); } \
196 inline pcl::Array4fMap getArray4fMap () { return (pcl::Array4fMap (data)); } \
197 inline pcl::Array4fMapConst getArray4fMap () const { return (pcl::Array4fMapConst (data)); }
199 #define PCL_ADD_POINT4D \
200 PCL_ADD_UNION_POINT4D \
201 PCL_ADD_EIGEN_MAPS_POINT4D
203 #define PCL_ADD_UNION_NORMAL4D \
204 union EIGEN_ALIGN16 { \
214 #define PCL_ADD_EIGEN_MAPS_NORMAL4D \
215 inline pcl::Vector3fMap getNormalVector3fMap () { return (pcl::Vector3fMap (data_n)); } \
216 inline pcl::Vector3fMapConst getNormalVector3fMap () const { return (pcl::Vector3fMapConst (data_n)); } \
217 inline pcl::Vector4fMap getNormalVector4fMap () { return (pcl::Vector4fMap (data_n)); } \
218 inline pcl::Vector4fMapConst getNormalVector4fMap () const { return (pcl::Vector4fMapConst (data_n)); }
220 #define PCL_ADD_NORMAL4D \
221 PCL_ADD_UNION_NORMAL4D \
222 PCL_ADD_EIGEN_MAPS_NORMAL4D
224 #define PCL_ADD_UNION_RGB \
241 #define PCL_ADD_EIGEN_MAPS_RGB \
242 inline Eigen::Vector3i getRGBVector3i () { return (Eigen::Vector3i (r, g, b)); } \
243 inline const Eigen::Vector3i getRGBVector3i () const { return (Eigen::Vector3i (r, g, b)); } \
244 inline Eigen::Vector4i getRGBVector4i () { return (Eigen::Vector4i (r, g, b, a)); } \
245 inline const Eigen::Vector4i getRGBVector4i () const { return (Eigen::Vector4i (r, g, b, a)); } \
246 inline Eigen::Vector4i getRGBAVector4i () { return (Eigen::Vector4i (r, g, b, a)); } \
247 inline const Eigen::Vector4i getRGBAVector4i () const { return (Eigen::Vector4i (r, g, b, a)); } \
248 inline pcl::Vector3cMap getBGRVector3cMap () { return (pcl::Vector3cMap (reinterpret_cast<uint8_t*> (&rgba))); } \
249 inline pcl::Vector3cMapConst getBGRVector3cMap () const { return (pcl::Vector3cMapConst (reinterpret_cast<const uint8_t*> (&rgba))); } \
250 inline pcl::Vector4cMap getBGRAVector4cMap () { return (pcl::Vector4cMap (reinterpret_cast<uint8_t*> (&rgba))); } \
251 inline pcl::Vector4cMapConst getBGRAVector4cMap () const { return (pcl::Vector4cMapConst (reinterpret_cast<const uint8_t*> (&rgba))); }
253 #define PCL_ADD_RGB \
255 PCL_ADD_EIGEN_MAPS_RGB
257 #define PCL_ADD_INTENSITY \
263 #define PCL_ADD_INTENSITY_8U \
269 #define PCL_ADD_INTENSITY_32U \
272 uint32_t intensity; \
280 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
291 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
302 x = _x; y = _y; z = _z;
307 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
319 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const RGB& p);
352 inline RGB (uint8_t _r, uint8_t _g, uint8_t _b)
360 friend std::ostream&
operator << (std::ostream& os,
const RGB& p);
377 intensity = p.intensity;
403 intensity = p.intensity;
411 #if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION <= 1101
412 operator unsigned char()
const
435 intensity = p.intensity;
460 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
463 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointXYZI& p);
468 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
492 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
500 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
515 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const Label& p);
528 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
556 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
576 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
584 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
623 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
645 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
649 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointXYZRGBL& p);
654 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
667 inline PointXYZRGBL (uint8_t _r, uint8_t _g, uint8_t _b, uint32_t _label)
679 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
696 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
699 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointXYZHSV& p);
704 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
705 h = p.
h; s = p.
s; v = p.
v;
712 h = s = v = data_c[3] = 0;
718 h = _h; v = _v; s = _s;
723 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
728 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointXY& p);
768 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
784 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
787 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const Normal& p);
795 normal_x = p.normal_x; normal_y = p.normal_y; normal_z = p.normal_z;
802 normal_x = normal_y = normal_z = data_n[3] = 0.0f;
806 inline Normal (
float n_x,
float n_y,
float n_z)
808 normal_x = n_x; normal_y = n_y; normal_z = n_z;
814 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
821 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
824 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const Axis& p);
832 normal_x = p.normal_x; normal_y = p.normal_y; normal_z = p.normal_z;
838 normal_x = normal_y = normal_z = data_n[3] = 0.0f;
841 inline Axis (
float n_x,
float n_y,
float n_z)
843 normal_x = n_x; normal_y = n_y; normal_z = n_z;
848 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
864 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
867 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointNormal& p);
875 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
876 normal_x = p.normal_x; normal_y = p.normal_y; normal_z = p.normal_z; data_n[3] = 0.0f;
884 normal_x = normal_y = normal_z = data_n[3] = 0.0f;
905 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
942 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
943 normal_x = p.normal_x; normal_y = p.normal_y; normal_z = p.normal_z; data_n[3] = 0.0f;
954 normal_x = normal_y = normal_z = data_n[3] = 0.0f;
974 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
977 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointXYZINormal& p);
985 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
986 normal_x = p.normal_x; normal_y = p.normal_y; normal_z = p.normal_z; data_n[3] = 0.0f;
995 normal_x = normal_y = normal_z = data_n[3] = 0.0f;
1017 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1020 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointXYZLNormal& p);
1028 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
1029 normal_x = p.normal_x; normal_y = p.normal_y; normal_z = p.normal_z; data_n[3] = 0.0f;
1038 normal_x = normal_y = normal_z = data_n[3] = 0.0f;
1060 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1063 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointWithRange& p);
1071 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
1099 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1102 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PointWithViewpoint& p);
1110 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
1115 float _vp_x = 0.0f,
float _vp_y = 0.0f,
float _vp_z = 0.0f)
1117 x = _x; y = _y; z = _z;
1119 vp_x = _vp_x; vp_y = _vp_y; vp_z = _vp_z;
1125 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const MomentInvariants& p);
1155 #if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION <= 1101
1156 operator unsigned char()
const
1165 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PrincipalCurvatures& p);
1199 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PFHRGBSignature250& p);
1211 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const PPFSignature& p);
1273 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const UniqueShapeContext1960& p);
1286 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const SHOT352& p);
1300 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const SHOT1344& p);
1331 inline const Eigen::Map<const Eigen::Vector3f>
getXAxisVector3fMap ()
const {
return (Eigen::Vector3f::Map (x_axis)); }
1333 inline const Eigen::Map<const Eigen::Vector3f>
getYAxisVector3fMap ()
const {
return (Eigen::Vector3f::Map (y_axis)); }
1335 inline const Eigen::Map<const Eigen::Vector3f>
getZAxisVector3fMap ()
const {
return (Eigen::Vector3f::Map (z_axis)); }
1336 inline Eigen::Map<Eigen::Matrix3f>
getMatrix3fMap () {
return (Eigen::Matrix3f::Map (rf)); }
1337 inline const Eigen::Map<const Eigen::Matrix3f>
getMatrix3fMap ()
const {
return (Eigen::Matrix3f::Map (rf)); }
1339 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1342 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const ReferenceFrame& p);
1347 for (
int d = 0; d < 9; ++d)
1353 for (
int d = 0; d < 3; ++d)
1354 x_axis[d] = y_axis[d] = z_axis[d] = 0;
1358 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1362 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const FPFHSignature33& p);
1374 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const VFHSignature308& p);
1386 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const GRSDSignature21& p);
1398 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const BRISKSignature512& p);
1412 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const ESFSignature640& p);
1424 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const GASDSignature512& p);
1436 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const GASDSignature984& p);
1448 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const GASDSignature7992& p);
1460 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const GFPFHSignature16& p);
1472 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const Narf36& p);
1485 PCL_EXPORTS std::ostream&
operator << (std::ostream& os,
const BorderDescription& p);
1516 friend std::ostream&
operator << (std::ostream& os,
const IntensityGradient& p);
1547 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1558 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
1587 inline PointWithScale (
float _x,
float _y,
float _z,
float _scale,
float _angle,
float _response,
int _octave)
1619 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1630 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
1641 normal_x = normal_y = normal_z = data_n[3] = 0.0f;
1656 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
1667 x = p.x; y = p.y; z = p.z; data[3] = 1.0f;
1675 x = y = z = 0.0f; data[3] = 1.0f;
1683 template <
int N> std::ostream&
1686 for (
int i = 0; i < N; ++i)
1687 os << (i == 0 ?
"(" :
"") << p.
histogram[i] << (i < N-1 ?
", " :
")");
1693 #include <pcl/common/point_tests.h>
A 2D point structure representing pixel image coordinates.
static int descriptorSize()
PointXYZRGBA(const _PointXYZRGBA &p)
std::bitset< 32 > BorderTraits
Data type to store extended information about a transition from foreground to backgroundSpecification...
A point structure representing the Point Feature Histogram (PFH).
This file defines compatibility wrappers for low level I/O functions.
A point structure representing Digital Elevation Map.
A point structure representing normal coordinates and the surface curvature estimate.
friend std::ostream & operator<<(std::ostream &os, const VFHSignature308 &p)
A point structure representing the minimum and maximum surface radii (in meters) computed using RSD.
Axis(float n_x, float n_y, float n_z)
const Eigen::Map< const Eigen::Vector3f > getYAxisVector3fMap() const
PointXYZI(const _PointXYZI &p)
A point structure for storing the Point Pair Color Feature (PPFRGB) values.
float scale
Diameter of the meaningful keypoint neighborhood.
friend std::ostream & operator<<(std::ostream &os, const ESFSignature640 &p)
friend std::ostream & operator<<(std::ostream &os, const ShapeContext1980 &p)
friend std::ostream & operator<<(std::ostream &os, const CPPFSignature &p)
A surfel, that is, a point structure representing Euclidean xyz coordinates, together with normal coo...
A point structure representing the Normal Based Signature for a feature matrix of 4-by-3.
static int descriptorSize()
const typedef Eigen::Map< const Eigen::Vector3f > Vector3fMapConst
A point structure representing the Globally Aligned Spatial Distribution (GASD) shape descriptor.
struct pcl::PointXYZIEdge EIGEN_ALIGN16
PointDEM(const _PointDEM &p)
static int descriptorSize()
friend std::ostream & operator<<(std::ostream &os, const PointXYZL &p)
Eigen::Map< Eigen::Vector3f > getYAxisVector3fMap()
PointXYZRGBL(uint8_t _r, uint8_t _g, uint8_t _b, uint32_t _label)
friend std::ostream & operator<<(std::ostream &os, const GASDSignature512 &p)
Normal(float n_x, float n_y, float n_z)
static int descriptorSize()
static int descriptorSize()
A point structure representing a description of whether a point is lying on a surface boundary or not...
static int descriptorSize()
static int descriptorSize()
float angle
Computed orientation of the keypoint (-1 if not applicable).
friend std::ostream & operator<<(std::ostream &os, const RGB &p)
A point structure representing the Fast Point Feature Histogram (FPFH).
friend std::ostream & operator<<(std::ostream &os, const UniqueShapeContext1960 &p)
unsigned char descriptor[64]
friend std::ostream & operator<<(std::ostream &os, const Boundary &p)
friend std::ostream & operator<<(std::ostream &os, const SHOT1344 &p)
friend std::ostream & operator<<(std::ostream &os, const PFHSignature125 &p)
friend std::ostream & operator<<(std::ostream &os, const GRSDSignature21 &p)
friend std::ostream & operator<<(std::ostream &os, const SHOT352 &p)
A point structure representing Euclidean xyz coordinates, intensity, together with normal coordinates...
float principal_curvature_z
float principal_curvature[3]
A point structure representing the grayscale intensity in single-channel images.
const Eigen::Map< const Eigen::Vector3f > getZAxisVector3fMap() const
friend std::ostream & operator<<(std::ostream &os, const PointWithScale &p)
PointWithScale(float _x, float _y, float _z, float _scale)
static int descriptorSize()
A point structure representing Euclidean xyz coordinates, and the RGB color.
A point structure representing a Unique Shape Context.
Eigen::Map< Vector3c > Vector3cMap
PointNormal(const _PointNormal &p)
A point structure representing Euclidean xyz coordinates together with the viewpoint from which it wa...
A point structure representing Euclidean xyz coordinates, and the intensity value.
PointWithScale(float _x, float _y, float _z, float _scale, float _angle, float _response, int _octave)
friend std::ostream & operator<<(std::ostream &os, const FPFHSignature33 &p)
friend std::ostream & operator<<(std::ostream &os, const BorderDescription &p)
const Eigen::Map< const Eigen::Vector3f > getXAxisVector3fMap() const
A point structure representing the grayscale intensity in single-channel images.
int octave
octave (pyramid layer) from which the keypoint has been extracted.
Eigen::Map< Eigen::Vector3f > Vector3fMap
Intensity(const _Intensity &p)
const typedef Eigen::Map< const Eigen::Vector4f, Eigen::Aligned > Vector4fMapConst
A point structure representing a Shape Context.
friend std::ostream & operator<<(std::ostream &os, const Intensity32u &p)
A point structure representing the GFPFH descriptor with 16 bins.
friend std::ostream & operator<<(std::ostream &os, const NormalBasedSignature12 &p)
RGB(uint8_t _r, uint8_t _g, uint8_t _b)
std::ostream & operator<<(std::ostream &os, const BivariatePolynomialT< real > &p)
friend std::ostream & operator<<(std::ostream &os, const PointSurfel &p)
friend std::ostream & operator<<(std::ostream &os, const Intensity8u &p)
A point structure representing the Globally Aligned Spatial Distribution (GASD) shape and color descr...
friend std::ostream & operator<<(std::ostream &os, const BRISKSignature512 &p)
friend std::ostream & operator<<(std::ostream &os, const GASDSignature7992 &p)
A point structure representing Euclidean xyz coordinates, and the RGBA color.
Eigen::Map< Eigen::Array4f, Eigen::Aligned > Array4fMap
PointXYZHSV(const _PointXYZHSV &p)
PointXYZL(const _PointXYZL &p)
friend std::ostream & operator<<(std::ostream &os, const PrincipalCurvatures &p)
PointXYZRGBL(const _PointXYZRGBL &p)
static int descriptorSize()
const typedef Eigen::Map< const Vector4c, Eigen::Aligned > Vector4cMapConst
static int descriptorSize()
const typedef Eigen::Map< const Eigen::Array3f > Array3fMapConst
A point structure representing the Global Radius-based Surface Descriptor (GRSD).
A point structure representing Euclidean xyz coordinates.
A point structure for storing the Point Pair Feature (CPPF) values.
A point structure representing the grayscale intensity in single-channel images.
PointXYZINormal(const _PointXYZINormal &p)
A point structure for storing the Point Pair Feature (PPF) values.
PointXYZLNormal(const _PointXYZLNormal &p)
Eigen::Map< Eigen::Vector3f > getZAxisVector3fMap()
friend std::ostream & operator<<(std::ostream &os, const GASDSignature984 &p)
float principal_curvature_y
PointXYZI(float _intensity)
A point structure representing the Binary Robust Invariant Scalable Keypoints (BRISK).
A point structure representing an Axis using its normal coordinates.
friend std::ostream & operator<<(std::ostream &os, const PointXYZLNormal &p)
PointWithScale(const _PointWithScale &p)
A structure representing RGB color information.
PointXYZ(float _x, float _y, float _z)
Intensity8u(const _Intensity8u &p)
A point structure representing the Point Feature Histogram with colors (PFHRGB).
A point structure representing the three moment invariants.
A point structure representing an interest point with Euclidean xyz coordinates, and an interest valu...
friend std::ostream & operator<<(std::ostream &os, const PointDEM &p)
PointXYZRGB(const _PointXYZRGB &p)
friend std::ostream & operator<<(std::ostream &os, const PFHRGBSignature250 &p)
A point structure representing Euclidean xyz coordinates, together with normal coordinates and the su...
float principal_curvature_x
Eigen::Map< Vector4c, Eigen::Aligned > Vector4cMap
A 2D point structure representing Euclidean xy coordinates.
friend std::ostream & operator<<(std::ostream &os, const PrincipalRadiiRSD &p)
static int descriptorSize()
friend std::ostream & operator<<(std::ostream &os, const PointXYZINormal &p)
friend std::ostream & operator<<(std::ostream &os, const Label &p)
friend std::ostream & operator<<(std::ostream &os, const Narf36 &p)
A point structure representing the principal curvatures and their magnitudes.
PointXYZ(const _PointXYZ &p)
A point structure representing the Narf descriptor.
friend std::ostream & operator<<(std::ostream &os, const PointXY &p)
static int descriptorSize()
float response
The response by which the most strong keypoints have been selected.
static int descriptorSize()
Eigen::Map< Eigen::Vector4f, Eigen::Aligned > Vector4fMap
A point structure representing the Ensemble of Shape Functions (ESF).
friend std::ostream & operator<<(std::ostream &os, const GFPFHSignature16 &p)
A point structure representing a 3-D position and scale.
static int descriptorSize()
Eigen::Matrix< uint8_t, 4, 1 > Vector4c
A point structure representing the Globally Aligned Spatial Distribution (GASD) shape and color descr...
A point structure representing Euclidean xyz coordinates, padded with an extra range float.
A point structure representing an N-D histogram.
friend std::ostream & operator<<(std::ostream &os, const PointNormal &p)
ReferenceFrame(const _ReferenceFrame &p)
Eigen::Map< Eigen::Vector3f > getXAxisVector3fMap()
friend std::ostream & operator<<(std::ostream &os, const PointWithRange &p)
friend std::ostream & operator<<(std::ostream &os, const Normal &p)
A point structure representing Euclidean xyz coordinates, and the RGB color, together with normal coo...
friend std::ostream & operator<<(std::ostream &os, const PointXYZI &p)
static int descriptorSize()
static int descriptorSize()
A point structure representing Euclidean xyz coordinates, a label, together with normal coordinates a...
A structure to store if a point in a range image lies on a border between an obstacle and the backgro...
const typedef Eigen::Map< const Vector3c > Vector3cMapConst
A point structure representing the generic Signature of Histograms of OrienTations (SHOT) - shape+col...
friend std::ostream & operator<<(std::ostream &os, const MomentInvariants &p)
A point structure representing the generic Signature of Histograms of OrienTations (SHOT) - shape onl...
friend std::ostream & operator<<(std::ostream &os, const PPFRGBSignature &p)
Eigen::Matrix< uint8_t, 3, 1 > Vector3c
const Eigen::Map< const Eigen::Matrix3f > getMatrix3fMap() const
const typedef Eigen::Map< const Eigen::Array4f, Eigen::Aligned > Array4fMapConst
friend std::ostream & operator<<(std::ostream &os, const PPFSignature &p)
friend std::ostream & operator<<(std::ostream &os, const PointXYZRGBNormal &p)
Eigen::Map< Eigen::Array3f > Array3fMap
friend std::ostream & operator<<(std::ostream &os, const IntensityGradient &p)
PointWithRange(const _PointWithRange &p)
PointWithViewpoint(const _PointWithViewpoint &p)
PointXYZRGBNormal(const _PointXYZRGBNormal &p)
Eigen::Map< Eigen::Matrix3f > getMatrix3fMap()
static int descriptorSize()
friend std::ostream & operator<<(std::ostream &os, const Intensity &p)
friend std::ostream & operator<<(std::ostream &os, const PointUV &p)
Intensity32u(const _Intensity32u &p)
A structure representing the Local Reference Frame of a point.
A point structure representing the Viewpoint Feature Histogram (VFH).
PointXYZRGB(uint8_t _r, uint8_t _g, uint8_t _b)
PointWithViewpoint(float _x=0.0f, float _y=0.0f, float _z=0.0f, float _vp_x=0.0f, float _vp_y=0.0f, float _vp_z=0.0f)
PointXYZHSV(float _h, float _v, float _s)
A point structure representing the intensity gradient of an XYZI point cloud.
PointSurfel(const _PointSurfel &p)