Point Cloud Library (PCL)
1.7.1
|
Base handler class for PointCloud geometry. More...
#include <pcl/visualization/point_cloud_geometry_handlers.h>
Public Types | |
typedef pcl::PCLPointCloud2 | PointCloud |
typedef PointCloud::Ptr | PointCloudPtr |
typedef PointCloud::ConstPtr | PointCloudConstPtr |
typedef boost::shared_ptr< PointCloudGeometryHandler< PointCloud > > | Ptr |
typedef boost::shared_ptr< const PointCloudGeometryHandler< PointCloud > > | ConstPtr |
Public Member Functions | |
PointCloudGeometryHandler (const PointCloudConstPtr &cloud, const Eigen::Vector4f &=Eigen::Vector4f::Zero()) | |
Constructor. More... | |
virtual | ~PointCloudGeometryHandler () |
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 |
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... | |
int | field_x_idx_ |
The index of the field holding the X data. More... | |
int | field_y_idx_ |
The index of the field holding the Y data. More... | |
int | field_z_idx_ |
The index of the field holding the Z data. More... | |
std::vector< pcl::PCLPointField > | fields_ |
The list of fields available for this PointCloud. More... | |
Base handler class for PointCloud geometry.
Definition at line 322 of file point_cloud_geometry_handlers.h.
typedef boost::shared_ptr<const PointCloudGeometryHandler<PointCloud> > pcl::visualization::PointCloudGeometryHandler< pcl::PCLPointCloud2 >::ConstPtr |
Definition at line 330 of file point_cloud_geometry_handlers.h.
typedef pcl::PCLPointCloud2 pcl::visualization::PointCloudGeometryHandler< pcl::PCLPointCloud2 >::PointCloud |
Definition at line 325 of file point_cloud_geometry_handlers.h.
typedef PointCloud::ConstPtr pcl::visualization::PointCloudGeometryHandler< pcl::PCLPointCloud2 >::PointCloudConstPtr |
Definition at line 327 of file point_cloud_geometry_handlers.h.
typedef PointCloud::Ptr pcl::visualization::PointCloudGeometryHandler< pcl::PCLPointCloud2 >::PointCloudPtr |
Definition at line 326 of file point_cloud_geometry_handlers.h.
typedef boost::shared_ptr<PointCloudGeometryHandler<PointCloud> > pcl::visualization::PointCloudGeometryHandler< pcl::PCLPointCloud2 >::Ptr |
Definition at line 329 of file point_cloud_geometry_handlers.h.
|
inline |
Constructor.
Definition at line 333 of file point_cloud_geometry_handlers.h.
|
inlinevirtual |
Destructor.
Definition at line 344 of file point_cloud_geometry_handlers.h.
|
pure virtual |
|
virtual |
Obtain the actual point geometry for the input dataset in VTK format.
[out] | points | the resultant geometry |
|
pure virtual |
|
inline |
Check if this handler is capable of handling the input data or not.
Definition at line 356 of file point_cloud_geometry_handlers.h.
|
inline |
Set the input cloud to be used.
[in] | cloud | the input cloud to be used by the handler |
Definition at line 368 of file point_cloud_geometry_handlers.h.
|
protected |
True if this handler is capable of handling the input data, false otherwise.
Definition at line 380 of file point_cloud_geometry_handlers.h.
|
protected |
A pointer to the input dataset.
Definition at line 375 of file point_cloud_geometry_handlers.h.
|
protected |
The index of the field holding the X data.
Definition at line 383 of file point_cloud_geometry_handlers.h.
|
protected |
The index of the field holding the Y data.
Definition at line 386 of file point_cloud_geometry_handlers.h.
|
protected |
The index of the field holding the Z data.
Definition at line 389 of file point_cloud_geometry_handlers.h.
|
protected |
The list of fields available for this PointCloud.
Definition at line 392 of file point_cloud_geometry_handlers.h.