Point Cloud Library (PCL)
1.7.0
|
SampleConsensusModelFromNormals represents the base model class for models that require the use of surface normals for estimation. More...
#include <pcl/sample_consensus/sac_model.h>
Public Types | |
typedef pcl::PointCloud < PointNT >::ConstPtr | PointCloudNConstPtr |
typedef pcl::PointCloud < PointNT >::Ptr | PointCloudNPtr |
typedef boost::shared_ptr < SampleConsensusModelFromNormals > | Ptr |
typedef boost::shared_ptr < const SampleConsensusModelFromNormals > | ConstPtr |
Public Member Functions | |
SampleConsensusModelFromNormals () | |
Empty constructor for base SampleConsensusModelFromNormals. More... | |
virtual | ~SampleConsensusModelFromNormals () |
Destructor. More... | |
void | setNormalDistanceWeight (const double w) |
Set the normal angular distance weight. More... | |
double | getNormalDistanceWeight () |
Get the normal angular distance weight. More... | |
void | setInputNormals (const PointCloudNConstPtr &normals) |
Provide a pointer to the input dataset that contains the point normals of the XYZ dataset. More... | |
PointCloudNConstPtr | getInputNormals () |
Get a pointer to the normals of the input XYZ point cloud dataset. More... | |
Protected Attributes | |
double | normal_distance_weight_ |
The relative weight (between 0 and 1) to give to the angular distance (0 to pi/2) between point normals and the plane normal. More... | |
PointCloudNConstPtr | normals_ |
A pointer to the input dataset that contains the point normals of the XYZ dataset. More... | |
SampleConsensusModelFromNormals represents the base model class for models that require the use of surface normals for estimation.
Definition at line 556 of file sac_model.h.
typedef boost::shared_ptr<const SampleConsensusModelFromNormals> pcl::SampleConsensusModelFromNormals< PointT, PointNT >::ConstPtr |
Definition at line 563 of file sac_model.h.
typedef pcl::PointCloud<PointNT>::ConstPtr pcl::SampleConsensusModelFromNormals< PointT, PointNT >::PointCloudNConstPtr |
Definition at line 559 of file sac_model.h.
typedef pcl::PointCloud<PointNT>::Ptr pcl::SampleConsensusModelFromNormals< PointT, PointNT >::PointCloudNPtr |
Definition at line 560 of file sac_model.h.
typedef boost::shared_ptr<SampleConsensusModelFromNormals> pcl::SampleConsensusModelFromNormals< PointT, PointNT >::Ptr |
Definition at line 562 of file sac_model.h.
|
inline |
Empty constructor for base SampleConsensusModelFromNormals.
Definition at line 566 of file sac_model.h.
|
inlinevirtual |
Destructor.
Definition at line 569 of file sac_model.h.
|
inline |
Get a pointer to the normals of the input XYZ point cloud dataset.
Definition at line 599 of file sac_model.h.
|
inline |
Get the normal angular distance weight.
Definition at line 584 of file sac_model.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
inline |
Provide a pointer to the input dataset that contains the point normals of the XYZ dataset.
[in] | normals | the const boost shared pointer to a PointCloud message |
Definition at line 592 of file sac_model.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
inline |
Set the normal angular distance weight.
[in] | w | the relative weight (between 0 and 1) to give to the angular distance (0 to pi/2) between point normals and the plane normal. (The Euclidean distance will have weight 1-w.) |
Definition at line 577 of file sac_model.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
protected |
The relative weight (between 0 and 1) to give to the angular distance (0 to pi/2) between point normals and the plane normal.
Definition at line 605 of file sac_model.h.
Referenced by pcl::SampleConsensusModelFromNormals< pcl::PointXYZRGB, PointNT >::getNormalDistanceWeight(), and pcl::SampleConsensusModelFromNormals< pcl::PointXYZRGB, PointNT >::setNormalDistanceWeight().
|
protected |
A pointer to the input dataset that contains the point normals of the XYZ dataset.
Definition at line 610 of file sac_model.h.
Referenced by pcl::SampleConsensusModelFromNormals< pcl::PointXYZRGB, PointNT >::getInputNormals(), and pcl::SampleConsensusModelFromNormals< pcl::PointXYZRGB, PointNT >::setInputNormals().