Point Cloud Library (PCL)
1.8.0
|
MeshProcessing represents the base class for mesh processing algorithms. More...
#include <pcl/surface/processing.h>
Public Types | |
typedef boost::shared_ptr< MeshProcessing > | Ptr |
typedef boost::shared_ptr< const MeshProcessing > | ConstPtr |
typedef PolygonMesh::ConstPtr | PolygonMeshConstPtr |
Public Member Functions | |
MeshProcessing () | |
Constructor. More... | |
virtual | ~MeshProcessing () |
Destructor. More... | |
void | setInputMesh (const pcl::PolygonMeshConstPtr &input) |
Set the input mesh that we want to process. More... | |
pcl::PolygonMeshConstPtr | getInputMesh () const |
Get the input mesh to be processed. More... | |
void | process (pcl::PolygonMesh &output) |
Process the input surface mesh and store the results. More... | |
Protected Member Functions | |
virtual bool | initCompute () |
Initialize computation. More... | |
virtual void | deinitCompute () |
UnInitialize computation. More... | |
virtual void | performProcessing (pcl::PolygonMesh &output)=0 |
Abstract surface processing method. More... | |
virtual std::string | getClassName () const |
Abstract class get name method. More... | |
Protected Attributes | |
pcl::PolygonMeshConstPtr | input_mesh_ |
Input polygonal mesh. More... | |
MeshProcessing represents the base class for mesh processing algorithms.
Definition at line 94 of file processing.h.
typedef boost::shared_ptr<const MeshProcessing> pcl::MeshProcessing::ConstPtr |
Definition at line 98 of file processing.h.
Definition at line 100 of file processing.h.
typedef boost::shared_ptr<MeshProcessing> pcl::MeshProcessing::Ptr |
Definition at line 97 of file processing.h.
|
inline |
Constructor.
Definition at line 103 of file processing.h.
|
inlinevirtual |
Destructor.
Definition at line 106 of file processing.h.
|
protectedvirtual |
UnInitialize computation.
Must be called after processing ends.
|
inlineprotectedvirtual |
Abstract class get name method.
Definition at line 143 of file processing.h.
|
inline |
Get the input mesh to be processed.
Definition at line 119 of file processing.h.
References pcl::PCLBase< PointInT >::deinitCompute(), pcl::PCLBase< PointInT >::initCompute(), pcl::CloudSurfaceProcessing< PointInT, PointOutT >::performProcessing(), and pcl::CloudSurfaceProcessing< PointInT, PointOutT >::process().
|
protectedvirtual |
|
protectedpure virtual |
Abstract surface processing method.
Implemented in pcl::MeshSmoothingWindowedSincVTK, pcl::MeshSmoothingLaplacianVTK, pcl::MeshSubdivisionVTK, pcl::EarClipping, and pcl::MeshQuadricDecimationVTK.
void pcl::MeshProcessing::process | ( | pcl::PolygonMesh & | output | ) |
Process the input surface mesh and store the results.
[out] | output | the resultant processed surface model |
|
inline |
Set the input mesh that we want to process.
[in] | input | the input polygonal mesh |
Definition at line 112 of file processing.h.
|
protected |
Input polygonal mesh.
Definition at line 147 of file processing.h.