Point Cloud Library (PCL)
1.14.1-dev
|
PCL base class. More...
#include </__w/1/s/cuda/common/include/pcl/cuda/pcl_cuda_base.h>
Public Types | |
using | PointCloud = CloudT |
using | PointCloudPtr = typename PointCloud::Ptr |
using | PointCloudConstPtr = typename PointCloud::ConstPtr |
Public Member Functions | |
PCLCUDABase () | |
Empty constructor. More... | |
virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
Provide a pointer to the input dataset. More... | |
PointCloudConstPtr const | getInputCloud () |
Get a pointer to the input host point cloud dataset. More... | |
Protected Member Functions | |
bool | initCompute () |
This method should get called before starting the actual computation. More... | |
bool | deinitCompute () |
This method should get called after finishing the actual computation. More... | |
Protected Attributes | |
PointCloudConstPtr | input_ |
The input point cloud dataset. More... | |
PCL base class.
Implements methods that are used by all PCL objects.
Definition at line 50 of file pcl_cuda_base.h.
using pcl::cuda::PCLCUDABase< CloudT >::PointCloud = CloudT |
Definition at line 53 of file pcl_cuda_base.h.
using pcl::cuda::PCLCUDABase< CloudT >::PointCloudConstPtr = typename PointCloud::ConstPtr |
Definition at line 55 of file pcl_cuda_base.h.
using pcl::cuda::PCLCUDABase< CloudT >::PointCloudPtr = typename PointCloud::Ptr |
Definition at line 54 of file pcl_cuda_base.h.
|
inline |
Empty constructor.
Definition at line 58 of file pcl_cuda_base.h.
|
inlineprotected |
This method should get called after finishing the actual computation.
Definition at line 92 of file pcl_cuda_base.h.
|
inline |
Get a pointer to the input host point cloud dataset.
Definition at line 71 of file pcl_cuda_base.h.
References pcl::cuda::PCLCUDABase< CloudT >::input_.
|
inlineprotected |
This method should get called before starting the actual computation.
Definition at line 82 of file pcl_cuda_base.h.
References pcl::cuda::PCLCUDABase< CloudT >::input_.
|
inlinevirtual |
Provide a pointer to the input dataset.
cloud | the const boost shared pointer to a PointCloud message |
Definition at line 64 of file pcl_cuda_base.h.
References pcl::cuda::PCLCUDABase< CloudT >::input_.
|
protected |
The input point cloud dataset.
Definition at line 78 of file pcl_cuda_base.h.
Referenced by pcl::cuda::PCLCUDABase< CloudT >::getInputCloud(), pcl::cuda::PCLCUDABase< CloudT >::initCompute(), and pcl::cuda::PCLCUDABase< CloudT >::setInputCloud().