Point Cloud Library (PCL)  1.14.0-dev
List of all members | Public Types | Public Member Functions | Protected Attributes
pcl::visualization::PointCloudGeometryHandler< PointT > Class Template Referenceabstract

Base handler class for PointCloud geometry. More...

#include <pcl/visualization/point_cloud_geometry_handlers.h>

+ Inheritance diagram for pcl::visualization::PointCloudGeometryHandler< PointT >:
+ Collaboration diagram for pcl::visualization::PointCloudGeometryHandler< PointT >:

Public Types

using PointCloud = pcl::PointCloud< PointT >
 
using PointCloudPtr = typename PointCloud::Ptr
 
using PointCloudConstPtr = typename PointCloud::ConstPtr
 
using Ptr = shared_ptr< PointCloudGeometryHandler< PointT > >
 
using ConstPtr = shared_ptr< const PointCloudGeometryHandler< PointT > >
 

Public Member Functions

 PointCloudGeometryHandler (const PointCloudConstPtr &cloud)
 Constructor. More...
 
virtual ~PointCloudGeometryHandler ()=default
 Destructor. More...
 
virtual std::string getName () const =0
 Abstract getName method. More...
 
virtual std::string getFieldName () const =0
 Abstract getFieldName method. More...
 
bool isCapable () const
 Check if this handler is capable of handling the input data or not. More...
 
virtual void getGeometry (vtkSmartPointer< vtkPoints > &points) const =0
 Obtain the actual point geometry for the input dataset in VTK format. More...
 
void setInputCloud (const PointCloudConstPtr &cloud)
 Set the input cloud to be used. More...
 

Protected Attributes

PointCloudConstPtr cloud_
 A pointer to the input dataset. More...
 
bool capable_
 True if this handler is capable of handling the input data, false otherwise. More...
 
index_t field_x_idx_
 The index of the field holding the X data. More...
 
index_t field_y_idx_
 The index of the field holding the Y data. More...
 
index_t field_z_idx_
 The index of the field holding the Z data. More...
 
std::vector< pcl::PCLPointFieldfields_
 The list of fields available for this PointCloud. More...
 

Detailed Description

template<typename PointT>
class pcl::visualization::PointCloudGeometryHandler< PointT >

Base handler class for PointCloud geometry.

Author
Radu B. Rusu

Definition at line 62 of file point_cloud_geometry_handlers.h.

Member Typedef Documentation

◆ ConstPtr

template<typename PointT >
using pcl::visualization::PointCloudGeometryHandler< PointT >::ConstPtr = shared_ptr<const PointCloudGeometryHandler<PointT> >

Definition at line 70 of file point_cloud_geometry_handlers.h.

◆ PointCloud

Definition at line 65 of file point_cloud_geometry_handlers.h.

◆ PointCloudConstPtr

Definition at line 67 of file point_cloud_geometry_handlers.h.

◆ PointCloudPtr

template<typename PointT >
using pcl::visualization::PointCloudGeometryHandler< PointT >::PointCloudPtr = typename PointCloud::Ptr

Definition at line 66 of file point_cloud_geometry_handlers.h.

◆ Ptr

template<typename PointT >
using pcl::visualization::PointCloudGeometryHandler< PointT >::Ptr = shared_ptr<PointCloudGeometryHandler<PointT> >

Definition at line 69 of file point_cloud_geometry_handlers.h.

Constructor & Destructor Documentation

◆ PointCloudGeometryHandler()

Constructor.

Definition at line 73 of file point_cloud_geometry_handlers.h.

◆ ~PointCloudGeometryHandler()

template<typename PointT >
virtual pcl::visualization::PointCloudGeometryHandler< PointT >::~PointCloudGeometryHandler ( )
virtualdefault

Destructor.

Member Function Documentation

◆ getFieldName()

template<typename PointT >
virtual std::string pcl::visualization::PointCloudGeometryHandler< PointT >::getFieldName ( ) const
pure virtual

◆ getGeometry()

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

Parameters
[out]pointsthe resultant geometry

Implemented in pcl::visualization::PointCloudGeometryHandlerCustom< PointT >, pcl::visualization::PointCloudGeometryHandlerSurfaceNormal< PointT >, and pcl::visualization::PointCloudGeometryHandlerXYZ< PointT >.

◆ getName()

template<typename PointT >
virtual std::string pcl::visualization::PointCloudGeometryHandler< PointT >::getName ( ) const
pure virtual

◆ isCapable()

template<typename PointT >
bool pcl::visualization::PointCloudGeometryHandler< PointT >::isCapable ( ) const
inline

Check if this handler is capable of handling the input data or not.

Definition at line 94 of file point_cloud_geometry_handlers.h.

References pcl::visualization::PointCloudGeometryHandler< PointT >::capable_.

◆ setInputCloud()

template<typename PointT >
void pcl::visualization::PointCloudGeometryHandler< PointT >::setInputCloud ( const PointCloudConstPtr cloud)
inline

Set the input cloud to be used.

Parameters
[in]cloudthe input cloud to be used by the handler

Definition at line 106 of file point_cloud_geometry_handlers.h.

References pcl::visualization::PointCloudGeometryHandler< PointT >::cloud_.

Member Data Documentation

◆ capable_

template<typename PointT >
bool pcl::visualization::PointCloudGeometryHandler< PointT >::capable_
protected

◆ cloud_

template<typename PointT >
PointCloudConstPtr pcl::visualization::PointCloudGeometryHandler< PointT >::cloud_
protected

◆ field_x_idx_

template<typename PointT >
index_t pcl::visualization::PointCloudGeometryHandler< PointT >::field_x_idx_
protected

◆ field_y_idx_

template<typename PointT >
index_t pcl::visualization::PointCloudGeometryHandler< PointT >::field_y_idx_
protected

◆ field_z_idx_

template<typename PointT >
index_t pcl::visualization::PointCloudGeometryHandler< PointT >::field_z_idx_
protected

◆ fields_

template<typename PointT >
std::vector<pcl::PCLPointField> pcl::visualization::PointCloudGeometryHandler< PointT >::fields_
protected

The documentation for this class was generated from the following file: