Base handler class for PointCloud geometry. More...
#include <point_cloud_geometry_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. | |
| void | setInputCloud (const PointCloudConstPtr &cloud) |
| Set the input cloud to be used. | |
| 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< pcl::PCLPointField > | fields_ |
| The list of fields available for this PointCloud. | |
Base handler class for PointCloud geometry.
Definition at line 61 of file point_cloud_geometry_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 69 of file point_cloud_geometry_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 64 of file point_cloud_geometry_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 66 of file point_cloud_geometry_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 65 of file point_cloud_geometry_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 68 of file point_cloud_geometry_handlers.h.
| pcl::visualization::PointCloudGeometryHandler< PointT >::PointCloudGeometryHandler | ( | const PointCloudConstPtr & | cloud | ) | [inline] |
Constructor.
Definition at line 72 of file point_cloud_geometry_handlers.h.
| virtual pcl::visualization::PointCloudGeometryHandler< PointT >::~PointCloudGeometryHandler | ( | ) | [inline, virtual] |
Destructor.
Definition at line 79 of file point_cloud_geometry_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 93 of file point_cloud_geometry_handlers.h.
| void pcl::visualization::PointCloudGeometryHandler< PointT >::setInputCloud | ( | const PointCloudConstPtr & | cloud | ) | [inline] |
Set the input cloud to be used.
| [in] | cloud | the input cloud to be used by the handler |
Definition at line 105 of file point_cloud_geometry_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 117 of file point_cloud_geometry_handlers.h.
PointCloudConstPtr pcl::visualization::PointCloudGeometryHandler< PointT >::cloud_ [protected] |
A pointer to the input dataset.
Definition at line 112 of file point_cloud_geometry_handlers.h.
int pcl::visualization::PointCloudGeometryHandler< PointT >::field_x_idx_ [protected] |
The index of the field holding the X data.
Definition at line 120 of file point_cloud_geometry_handlers.h.
int pcl::visualization::PointCloudGeometryHandler< PointT >::field_y_idx_ [protected] |
The index of the field holding the Y data.
Definition at line 123 of file point_cloud_geometry_handlers.h.
int pcl::visualization::PointCloudGeometryHandler< PointT >::field_z_idx_ [protected] |
The index of the field holding the Z data.
Definition at line 126 of file point_cloud_geometry_handlers.h.
std::vector<pcl::PCLPointField> pcl::visualization::PointCloudGeometryHandler< PointT >::fields_ [protected] |
The list of fields available for this PointCloud.
Definition at line 129 of file point_cloud_geometry_handlers.h.