PointRepresentation provides a set of methods for converting a point structs/object into an n-dimensional vector. More...
#include <point_representation.h>
Public Member Functions | |
virtual void | copyToFloatArray (const PointT &p, float *out) const =0 |
Copy point data from input point to a float array. This method must be overriden in all subclasses. | |
int | getNumberOfDimensions () const |
Return the number of dimensions in the point's vector representation. | |
virtual bool | isValid (const PointT &p) const |
Verify that the input point is valid. | |
PointRepresentation () | |
Empty constructor. | |
void | setRescaleValues (const float *rescale_array) |
Set the rescale values to use when vectorizing points. | |
template<typename OutputType > | |
void | vectorize (const PointT &p, OutputType &out) const |
Convert input point into a vector representation, rescaling by alpha. | |
Protected Attributes | |
std::vector< float > | alpha_ |
A vector containing the rescale factor to apply to each dimension. | |
int | nr_dimensions_ |
The number of dimensions in this point's vector (i.e. the "k" in "k-D"). |
PointRepresentation provides a set of methods for converting a point structs/object into an n-dimensional vector.
Definition at line 52 of file point_representation.h.
pcl::PointRepresentation< PointT >::PointRepresentation | ( | ) | [inline] |
Empty constructor.
Definition at line 62 of file point_representation.h.
virtual void pcl::PointRepresentation< PointT >::copyToFloatArray | ( | const PointT & | p, | |
float * | out | |||
) | const [pure virtual] |
Copy point data from input point to a float array. This method must be overriden in all subclasses.
p | The input point | |
out | A pointer to a float array. |
Implemented in pcl::DefaultPointRepresentation< PointDefault >, pcl::DefaultPointRepresentation< PointXYZ >, pcl::DefaultPointRepresentation< PointXYZI >, pcl::DefaultPointRepresentation< PointNormal >, pcl::DefaultPointRepresentation< PFHSignature125 >, pcl::DefaultPointRepresentation< FPFHSignature33 >, and MyPointRepresenationXY.
int pcl::PointRepresentation< PointT >::getNumberOfDimensions | ( | ) | const [inline] |
Return the number of dimensions in the point's vector representation.
Definition at line 127 of file point_representation.h.
virtual bool pcl::PointRepresentation< PointT >::isValid | ( | const PointT & | p | ) | const [inline, virtual] |
Verify that the input point is valid.
p | The point to validate |
Definition at line 74 of file point_representation.h.
void pcl::PointRepresentation< PointT >::setRescaleValues | ( | const float * | rescale_array | ) | [inline] |
Set the rescale values to use when vectorizing points.
rescale_array | The array/vector of rescale values. Can be of any type that implements the [] operator. |
Definition at line 119 of file point_representation.h.
void pcl::PointRepresentation< PointT >::vectorize | ( | const PointT & | p, | |
OutputType & | out | |||
) | const [inline] |
Convert input point into a vector representation, rescaling by alpha.
p | ||
out | The output vector. Can be of any type that implements the [] operator. |
Definition at line 96 of file point_representation.h.
std::vector<float> pcl::PointRepresentation< PointT >::alpha_ [protected] |
A vector containing the rescale factor to apply to each dimension.
Definition at line 58 of file point_representation.h.
int pcl::PointRepresentation< PointT >::nr_dimensions_ [protected] |
The number of dimensions in this point's vector (i.e. the "k" in "k-D").
Definition at line 56 of file point_representation.h.