Point Cloud Library (PCL)
1.14.1-dev
|
#include <pcl/point_representation.h>
Public Member Functions | |
DefaultPointRepresentation () | |
void | copyToFloatArray (const PointNormal &p, float *out) const override |
Copy point data from input point to a float array. More... | |
Public Member Functions inherited from pcl::PointRepresentation< PointNormal > | |
virtual | ~PointRepresentation ()=default |
Empty destructor. More... | |
bool | isTrivial () const |
Returns whether this point representation is trivial. More... | |
virtual bool | isValid (const PointNormal &p) const |
Verify that the input point is valid. More... | |
void | vectorize (const PointNormal &p, OutputType &out) const |
Convert input point into a vector representation, rescaling by alpha. More... | |
void | vectorize (const PointNormal &p, float *out) const |
void | vectorize (const PointNormal &p, std::vector< float > &out) const |
void | setRescaleValues (const float *rescale_array) |
Set the rescale values to use when vectorizing points. More... | |
int | getNumberOfDimensions () const |
Return the number of dimensions in the point's vector representation. More... | |
Additional Inherited Members | |
Public Types inherited from pcl::PointRepresentation< PointNormal > | |
using | Ptr = shared_ptr< PointRepresentation< PointNormal > > |
using | ConstPtr = shared_ptr< const PointRepresentation< PointNormal > > |
Protected Attributes inherited from pcl::PointRepresentation< PointNormal > | |
int | nr_dimensions_ |
The number of dimensions in this point's vector (i.e. More... | |
std::vector< float > | alpha_ |
A vector containing the rescale factor to apply to each dimension. More... | |
bool | trivial_ |
Indicates whether this point representation is trivial. More... | |
Definition at line 377 of file point_representation.h.
|
inline |
Definition at line 380 of file point_representation.h.
References pcl::PointRepresentation< PointDefault >::nr_dimensions_, and pcl::PointRepresentation< PointDefault >::trivial_.
|
inlineoverridevirtual |
Copy point data from input point to a float array.
This method must be overridden in all subclasses.
[in] | p | The input point |
[out] | out | A pointer to a float array. |
Implements pcl::PointRepresentation< PointNormal >.
Definition at line 387 of file point_representation.h.