PointRepresentation provides a set of methods for converting a point structs/object into an n-dimensional vector. More...
#include <point_representation.h>
Public Types | |
typedef boost::shared_ptr < const PointRepresentation < PointT > > | ConstPtr |
typedef boost::shared_ptr < PointRepresentation< PointT > > | Ptr |
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. | |
bool | isTrivial () const |
Returns whether this point representation is trivial. It is trivial if and only if the following conditions hold: | |
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. | |
virtual | ~PointRepresentation () |
Empty destructor. | |
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") | |
bool | trivial_ |
Indicates whether this point representation is trivial. It is trivial if and only if the following conditions hold: |
PointRepresentation provides a set of methods for converting a point structs/object into an n-dimensional vector.
Definition at line 55 of file point_representation.h.
typedef boost::shared_ptr<const PointRepresentation<PointT> > pcl::PointRepresentation< PointT >::ConstPtr |
Reimplemented in pcl::CustomPointRepresentation< PointDefault >, pcl::DefaultFeatureRepresentation< PointDefault >, pcl::DefaultFeatureRepresentation< PPFSignature >, pcl::DefaultFeatureRepresentation< VFHSignature308 >, pcl::DefaultFeatureRepresentation< PFHRGBSignature250 >, pcl::DefaultFeatureRepresentation< NormalBasedSignature12 >, pcl::DefaultFeatureRepresentation< FPFHSignature33 >, pcl::DefaultFeatureRepresentation< PFHSignature125 >, and pcl::DefaultPointRepresentation< PointDefault >.
Definition at line 75 of file point_representation.h.
typedef boost::shared_ptr<PointRepresentation<PointT> > pcl::PointRepresentation< PointT >::Ptr |
Reimplemented in pcl::CustomPointRepresentation< PointDefault >, pcl::DefaultFeatureRepresentation< PointDefault >, pcl::DefaultFeatureRepresentation< PPFSignature >, pcl::DefaultFeatureRepresentation< VFHSignature308 >, pcl::DefaultFeatureRepresentation< PFHRGBSignature250 >, pcl::DefaultFeatureRepresentation< NormalBasedSignature12 >, pcl::DefaultFeatureRepresentation< FPFHSignature33 >, pcl::DefaultFeatureRepresentation< PFHSignature125 >, and pcl::DefaultPointRepresentation< PointDefault >.
Definition at line 74 of file point_representation.h.
pcl::PointRepresentation< PointT >::PointRepresentation | ( | ) | [inline] |
Empty constructor.
Definition at line 78 of file point_representation.h.
virtual pcl::PointRepresentation< PointT >::~PointRepresentation | ( | ) | [inline, virtual] |
Empty destructor.
Definition at line 81 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.
[in] | p | The input point |
[out] | out | A pointer to a float array. |
Implemented in pcl::CustomPointRepresentation< PointDefault >, pcl::DefaultPointRepresentation< SHOT1344 >, pcl::DefaultPointRepresentation< SHOT352 >, pcl::DefaultPointRepresentation< ShapeContext >, pcl::DefaultPointRepresentation< PPFSignature >, pcl::DefaultPointRepresentation< PointNormal >, pcl::DefaultPointRepresentation< PointXYZI >, MyPointRepresentationXY, pcl::DefaultPointRepresentation< PointXYZ >, pcl::DefaultFeatureRepresentation< PointDefault >, pcl::DefaultFeatureRepresentation< PPFSignature >, pcl::DefaultFeatureRepresentation< VFHSignature308 >, pcl::DefaultFeatureRepresentation< PFHRGBSignature250 >, pcl::DefaultFeatureRepresentation< NormalBasedSignature12 >, pcl::DefaultFeatureRepresentation< FPFHSignature33 >, pcl::DefaultFeatureRepresentation< PFHSignature125 >, and pcl::DefaultPointRepresentation< PointDefault >.
int pcl::PointRepresentation< PointT >::getNumberOfDimensions | ( | ) | const [inline] |
Return the number of dimensions in the point's vector representation.
Definition at line 171 of file point_representation.h.
bool pcl::PointRepresentation< PointT >::isTrivial | ( | ) | const [inline] |
Returns whether this point representation is trivial. It is trivial if and only if the following conditions hold:
Definition at line 96 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 102 of file point_representation.h.
void pcl::PointRepresentation< PointT >::setRescaleValues | ( | const float * | rescale_array | ) | [inline] |
Set the rescale values to use when vectorizing points.
[in] | rescale_array | The array/vector of rescale values. Can be of any type that implements the [] operator. |
Definition at line 163 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.
[in] | p | the input point |
[out] | out | The output vector. Can be of any type that implements the [] operator. |
Definition at line 142 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 61 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 59 of file point_representation.h.
bool pcl::PointRepresentation< PointT >::trivial_ [protected] |
Indicates whether this point representation is trivial. It is trivial if and only if the following conditions hold:
Definition at line 71 of file point_representation.h.