pcl::PointRepresentation< PointT > Class Template Reference

PointRepresentation provides a set of methods for converting a point structs/object into an n-dimensional vector. More...

#include <point_representation.h>

List of all members.

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").

Detailed Description

template<typename PointT>
class pcl::PointRepresentation< PointT >

PointRepresentation provides a set of methods for converting a point structs/object into an n-dimensional vector.

Note:
This is an abstract class. Subclasses must set nr_dimensions_ to the appropriate value in the constructor and provide an implemention of the pure virtual copyToFloatArray method.

Definition at line 52 of file point_representation.h.


Constructor & Destructor Documentation

template<typename PointT>
pcl::PointRepresentation< PointT >::PointRepresentation (  )  [inline]

Empty constructor.

Definition at line 62 of file point_representation.h.


Member Function Documentation

template<typename PointT>
virtual void pcl::PointRepresentation< PointT >::copyToFloatArray ( const PointT &  p,
float *  out 
) const [pure virtual]
template<typename PointT>
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.

template<typename PointT>
virtual bool pcl::PointRepresentation< PointT >::isValid ( const PointT &  p  )  const [inline, virtual]

Verify that the input point is valid.

Parameters:
p The point to validate

Definition at line 74 of file point_representation.h.

template<typename PointT>
void pcl::PointRepresentation< PointT >::setRescaleValues ( const float *  rescale_array  )  [inline]

Set the rescale values to use when vectorizing points.

Parameters:
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.

template<typename PointT>
template<typename OutputType >
void pcl::PointRepresentation< PointT >::vectorize ( const PointT &  p,
OutputType &  out 
) const [inline]

Convert input point into a vector representation, rescaling by alpha.

Parameters:
p 
out The output vector. Can be of any type that implements the [] operator.

Definition at line 96 of file point_representation.h.


Member Data Documentation

template<typename PointT>
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.

template<typename PointT>
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.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines


pcl
Author(s): See http://pcl.ros.org/authors for the complete list of authors.
autogenerated on Fri Jan 11 09:57:20 2013