Base handler class for PointCloud geometry. More...
#include <point_cloud_handlers.h>
Public Types | |
typedef boost::shared_ptr < const PointCloudGeometryHandler < PointT > > | ConstPtr |
typedef pcl::PointCloud< PointT > | PointCloud |
typedef PointCloud::ConstPtr | PointCloudConstPtr |
typedef PointCloud::Ptr | PointCloudPtr |
typedef boost::shared_ptr < PointCloudGeometryHandler < PointT > > | Ptr |
Public Member Functions | |
virtual std::string | getFieldName () const =0 |
Abstract getFieldName method. | |
virtual void | getGeometry (vtkSmartPointer< vtkPoints > &points) const =0 |
Obtain the actual point geometry for the input dataset in VTK format. | |
virtual std::string | getName () const =0 |
Abstract getName method. | |
bool | isCapable () const |
Checl if this handler is capable of handling the input data or not. | |
PointCloudGeometryHandler (const PointCloudConstPtr &cloud) | |
Constructor. | |
virtual | ~PointCloudGeometryHandler () |
Destructor. | |
Protected Attributes | |
bool | capable_ |
True if this handler is capable of handling the input data, false otherwise. | |
PointCloudConstPtr | cloud_ |
A pointer to the input dataset. | |
int | field_x_idx_ |
The index of the field holding the X data. | |
int | field_y_idx_ |
The index of the field holding the Y data. | |
int | field_z_idx_ |
The index of the field holding the Z data. | |
std::vector < sensor_msgs::PointField > | fields_ |
The list of fields available for this PointCloud. |
Base handler class for PointCloud geometry.
Definition at line 58 of file point_cloud_handlers.h.
typedef boost::shared_ptr<const PointCloudGeometryHandler<PointT> > pcl::visualization::PointCloudGeometryHandler< PointT >::ConstPtr |
Reimplemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
Definition at line 66 of file point_cloud_handlers.h.
typedef pcl::PointCloud<PointT> pcl::visualization::PointCloudGeometryHandler< PointT >::PointCloud |
Reimplemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
Definition at line 61 of file point_cloud_handlers.h.
typedef PointCloud::ConstPtr pcl::visualization::PointCloudGeometryHandler< PointT >::PointCloudConstPtr |
Reimplemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
Definition at line 63 of file point_cloud_handlers.h.
typedef PointCloud::Ptr pcl::visualization::PointCloudGeometryHandler< PointT >::PointCloudPtr |
Reimplemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
Definition at line 62 of file point_cloud_handlers.h.
typedef boost::shared_ptr<PointCloudGeometryHandler<PointT> > pcl::visualization::PointCloudGeometryHandler< PointT >::Ptr |
Reimplemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
Definition at line 65 of file point_cloud_handlers.h.
pcl::visualization::PointCloudGeometryHandler< PointT >::PointCloudGeometryHandler | ( | const PointCloudConstPtr & | cloud | ) | [inline] |
Constructor.
Definition at line 69 of file point_cloud_handlers.h.
virtual pcl::visualization::PointCloudGeometryHandler< PointT >::~PointCloudGeometryHandler | ( | ) | [inline, virtual] |
Destructor.
Definition at line 76 of file point_cloud_handlers.h.
virtual std::string pcl::visualization::PointCloudGeometryHandler< PointT >::getFieldName | ( | ) | const [pure virtual] |
Abstract getFieldName method.
Implemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
virtual void pcl::visualization::PointCloudGeometryHandler< PointT >::getGeometry | ( | vtkSmartPointer< vtkPoints > & | points | ) | const [pure virtual] |
Obtain the actual point geometry for the input dataset in VTK format.
[out] | points | the resultant geometry |
Implemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
virtual std::string pcl::visualization::PointCloudGeometryHandler< PointT >::getName | ( | ) | const [pure virtual] |
Abstract getName method.
Implemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.
bool pcl::visualization::PointCloudGeometryHandler< PointT >::isCapable | ( | ) | const [inline] |
Checl if this handler is capable of handling the input data or not.
Definition at line 90 of file point_cloud_handlers.h.
bool pcl::visualization::PointCloudGeometryHandler< PointT >::capable_ [protected] |
True if this handler is capable of handling the input data, false otherwise.
Definition at line 105 of file point_cloud_handlers.h.
PointCloudConstPtr pcl::visualization::PointCloudGeometryHandler< PointT >::cloud_ [protected] |
A pointer to the input dataset.
Definition at line 100 of file point_cloud_handlers.h.
int pcl::visualization::PointCloudGeometryHandler< PointT >::field_x_idx_ [protected] |
The index of the field holding the X data.
Definition at line 108 of file point_cloud_handlers.h.
int pcl::visualization::PointCloudGeometryHandler< PointT >::field_y_idx_ [protected] |
The index of the field holding the Y data.
Definition at line 111 of file point_cloud_handlers.h.
int pcl::visualization::PointCloudGeometryHandler< PointT >::field_z_idx_ [protected] |
The index of the field holding the Z data.
Definition at line 114 of file point_cloud_handlers.h.
std::vector<sensor_msgs::PointField> pcl::visualization::PointCloudGeometryHandler< PointT >::fields_ [protected] |
The list of fields available for this PointCloud.
Definition at line 117 of file point_cloud_handlers.h.