Point Cloud Library (PCL)  1.14.0-dev
List of all members | Public Types | Public Member Functions | Protected Member Functions
pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT > Class Template Reference

SampleConsensusModelNormalParallelPlane defines a model for 3D plane segmentation using additional surface normal constraints. More...

#include <pcl/sample_consensus/sac_model_normal_parallel_plane.h>

+ Inheritance diagram for pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >:
+ Collaboration diagram for pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >:

Public Types

using PointCloud = typename SampleConsensusModel< PointT >::PointCloud
 
using PointCloudPtr = typename SampleConsensusModel< PointT >::PointCloudPtr
 
using PointCloudConstPtr = typename SampleConsensusModel< PointT >::PointCloudConstPtr
 
using PointCloudNPtr = typename SampleConsensusModelFromNormals< PointT, PointNT >::PointCloudNPtr
 
using PointCloudNConstPtr = typename SampleConsensusModelFromNormals< PointT, PointNT >::PointCloudNConstPtr
 
using Ptr = shared_ptr< SampleConsensusModelNormalParallelPlane< PointT, PointNT > >
 
using ConstPtr = shared_ptr< const SampleConsensusModelNormalParallelPlane< PointT, PointNT > >
 
- Public Types inherited from pcl::SampleConsensusModelNormalPlane< PointT, PointNT >
using PointCloud = typename SampleConsensusModel< PointT >::PointCloud
 
using PointCloudPtr = typename SampleConsensusModel< PointT >::PointCloudPtr
 
using PointCloudConstPtr = typename SampleConsensusModel< PointT >::PointCloudConstPtr
 
using PointCloudNPtr = typename SampleConsensusModelFromNormals< PointT, PointNT >::PointCloudNPtr
 
using PointCloudNConstPtr = typename SampleConsensusModelFromNormals< PointT, PointNT >::PointCloudNConstPtr
 
using Ptr = shared_ptr< SampleConsensusModelNormalPlane< PointT, PointNT > >
 
using ConstPtr = shared_ptr< const SampleConsensusModelNormalPlane< PointT, PointNT > >
 
- Public Types inherited from pcl::SampleConsensusModelPlane< PointT >
using PointCloud = typename SampleConsensusModel< PointT >::PointCloud
 
using PointCloudPtr = typename SampleConsensusModel< PointT >::PointCloudPtr
 
using PointCloudConstPtr = typename SampleConsensusModel< PointT >::PointCloudConstPtr
 
using Ptr = shared_ptr< SampleConsensusModelPlane< PointT > >
 
using ConstPtr = shared_ptr< const SampleConsensusModelPlane< PointT > >
 
- Public Types inherited from pcl::SampleConsensusModel< PointT >
using PointCloud = pcl::PointCloud< PointT >
 
using PointCloudConstPtr = typename PointCloud::ConstPtr
 
using PointCloudPtr = typename PointCloud::Ptr
 
using SearchPtr = typename pcl::search::Search< PointT >::Ptr
 
using Ptr = shared_ptr< SampleConsensusModel< PointT > >
 
using ConstPtr = shared_ptr< const SampleConsensusModel< PointT > >
 
- Public Types inherited from pcl::SampleConsensusModelFromNormals< PointT, PointNT >
using PointCloudNConstPtr = typename pcl::PointCloud< PointNT >::ConstPtr
 
using PointCloudNPtr = typename pcl::PointCloud< PointNT >::Ptr
 
using Ptr = shared_ptr< SampleConsensusModelFromNormals< PointT, PointNT > >
 
using ConstPtr = shared_ptr< const SampleConsensusModelFromNormals< PointT, PointNT > >
 

Public Member Functions

 SampleConsensusModelNormalParallelPlane (const PointCloudConstPtr &cloud, bool random=false)
 Constructor for base SampleConsensusModelNormalParallelPlane. More...
 
 SampleConsensusModelNormalParallelPlane (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false)
 Constructor for base SampleConsensusModelNormalParallelPlane. More...
 
 ~SampleConsensusModelNormalParallelPlane () override=default
 Empty destructor. More...
 
void setAxis (const Eigen::Vector3f &ax)
 Set the axis along which we need to search for a plane perpendicular to. More...
 
Eigen::Vector3f getAxis () const
 Get the axis along which we need to search for a plane perpendicular to. More...
 
void setEpsAngle (const double ea)
 Set the angle epsilon (delta) threshold. More...
 
double getEpsAngle () const
 Get the angle epsilon (delta) threshold. More...
 
void setDistanceFromOrigin (const double d)
 Set the distance we expect the plane to be from the origin. More...
 
double getDistanceFromOrigin () const
 Get the distance of the plane from the origin. More...
 
void setEpsDist (const double delta)
 Set the distance epsilon (delta) threshold. More...
 
double getEpsDist () const
 Get the distance epsilon (delta) threshold. More...
 
pcl::SacModel getModelType () const override
 Return a unique id for this model (SACMODEL_NORMAL_PARALLEL_PLANE). More...
 
- Public Member Functions inherited from pcl::SampleConsensusModelNormalPlane< PointT, PointNT >
 SampleConsensusModelNormalPlane (const PointCloudConstPtr &cloud, bool random=false)
 Constructor for base SampleConsensusModelNormalPlane. More...
 
 SampleConsensusModelNormalPlane (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false)
 Constructor for base SampleConsensusModelNormalPlane. More...
 
 ~SampleConsensusModelNormalPlane () override=default
 Empty destructor. More...
 
void selectWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold, Indices &inliers) override
 Select all the points which respect the given model coefficients as inliers. More...
 
std::size_t countWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold) const override
 Count all the points which respect the given model coefficients as inliers. More...
 
void getDistancesToModel (const Eigen::VectorXf &model_coefficients, std::vector< double > &distances) const override
 Compute all distances from the cloud data to a given plane model. More...
 
pcl::SacModel getModelType () const override
 Return a unique id for this model (SACMODEL_NORMAL_PLANE). More...
 
- Public Member Functions inherited from pcl::SampleConsensusModelPlane< PointT >
 SampleConsensusModelPlane (const PointCloudConstPtr &cloud, bool random=false)
 Constructor for base SampleConsensusModelPlane. More...
 
 SampleConsensusModelPlane (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false)
 Constructor for base SampleConsensusModelPlane. More...
 
 ~SampleConsensusModelPlane () override=default
 Empty destructor. More...
 
bool computeModelCoefficients (const Indices &samples, Eigen::VectorXf &model_coefficients) const override
 Check whether the given index samples can form a valid plane model, compute the model coefficients from these samples and store them internally in model_coefficients_. More...
 
void getDistancesToModel (const Eigen::VectorXf &model_coefficients, std::vector< double > &distances) const override
 Compute all distances from the cloud data to a given plane model. More...
 
void selectWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold, Indices &inliers) override
 Select all the points which respect the given model coefficients as inliers. More...
 
std::size_t countWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold) const override
 Count all the points which respect the given model coefficients as inliers. More...
 
void optimizeModelCoefficients (const Indices &inliers, const Eigen::VectorXf &model_coefficients, Eigen::VectorXf &optimized_coefficients) const override
 Recompute the plane coefficients using the given inlier set and return them to the user. More...
 
void projectPoints (const Indices &inliers, const Eigen::VectorXf &model_coefficients, PointCloud &projected_points, bool copy_data_fields=true) const override
 Create a new point cloud with inliers projected onto the plane model. More...
 
bool doSamplesVerifyModel (const std::set< index_t > &indices, const Eigen::VectorXf &model_coefficients, const double threshold) const override
 Verify whether a subset of indices verifies the given plane model coefficients. More...
 
pcl::SacModel getModelType () const override
 Return a unique id for this model (SACMODEL_PLANE). More...
 
- Public Member Functions inherited from pcl::SampleConsensusModel< PointT >
 SampleConsensusModel (const PointCloudConstPtr &cloud, bool random=false)
 Constructor for base SampleConsensusModel. More...
 
 SampleConsensusModel (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false)
 Constructor for base SampleConsensusModel. More...
 
virtual ~SampleConsensusModel ()=default
 Destructor for base SampleConsensusModel. More...
 
virtual void getSamples (int &iterations, Indices &samples)
 Get a set of random data samples and return them as point indices. More...
 
virtual void setInputCloud (const PointCloudConstPtr &cloud)
 Provide a pointer to the input dataset. More...
 
PointCloudConstPtr getInputCloud () const
 Get a pointer to the input point cloud dataset. More...
 
void setIndices (const IndicesPtr &indices)
 Provide a pointer to the vector of indices that represents the input data. More...
 
void setIndices (const Indices &indices)
 Provide the vector of indices that represents the input data. More...
 
IndicesPtr getIndices () const
 Get a pointer to the vector of indices used. More...
 
const std::string & getClassName () const
 Get a string representation of the name of this class. More...
 
unsigned int getSampleSize () const
 Return the size of a sample from which the model is computed. More...
 
unsigned int getModelSize () const
 Return the number of coefficients in the model. More...
 
void setRadiusLimits (const double &min_radius, const double &max_radius)
 Set the minimum and maximum allowable radius limits for the model (applicable to models that estimate a radius) More...
 
void getRadiusLimits (double &min_radius, double &max_radius) const
 Get the minimum and maximum allowable radius limits for the model as set by the user. More...
 
void setModelConstraints (std::function< bool(const Eigen::VectorXf &)> function)
 This can be used to impose any kind of constraint on the model, e.g. More...
 
void setSamplesMaxDist (const double &radius, SearchPtr search)
 Set the maximum distance allowed when drawing random samples. More...
 
void getSamplesMaxDist (double &radius) const
 Get maximum distance allowed when drawing random samples. More...
 
double computeVariance (const std::vector< double > &error_sqr_dists) const
 Compute the variance of the errors to the model. More...
 
double computeVariance () const
 Compute the variance of the errors to the model from the internally estimated vector of distances. More...
 
- Public Member Functions inherited from pcl::SampleConsensusModelFromNormals< PointT, PointNT >
 SampleConsensusModelFromNormals ()
 Empty constructor for base SampleConsensusModelFromNormals. More...
 
virtual ~SampleConsensusModelFromNormals ()=default
 Destructor. More...
 
void setNormalDistanceWeight (const double w)
 Set the normal angular distance weight. More...
 
double getNormalDistanceWeight () const
 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 () const
 Get a pointer to the normals of the input XYZ point cloud dataset. More...
 

Protected Member Functions

bool isModelValid (const Eigen::VectorXf &model_coefficients) const override
 Check whether a model is valid given the user constraints. More...
 
- Protected Member Functions inherited from pcl::SampleConsensusModelNormalPlane< PointT, PointNT >
std::size_t countWithinDistanceStandard (const Eigen::VectorXf &model_coefficients, const double threshold, std::size_t i=0) const
 This implementation uses no SIMD instructions. More...
 
- Protected Member Functions inherited from pcl::SampleConsensusModelPlane< PointT >
std::size_t countWithinDistanceStandard (const Eigen::VectorXf &model_coefficients, const double threshold, std::size_t i=0) const
 This implementation uses no SIMD instructions. More...
 
- Protected Member Functions inherited from pcl::SampleConsensusModel< PointT >
 SampleConsensusModel (bool random=false)
 Empty constructor for base SampleConsensusModel. More...
 
void drawIndexSample (Indices &sample)
 Fills a sample array with random samples from the indices_ vector. More...
 
void drawIndexSampleRadius (Indices &sample)
 Fills a sample array with one random sample from the indices_ vector and other random samples that are closer than samples_radius_. More...
 
int rnd ()
 Boost-based random number generator. More...
 

Additional Inherited Members

- Protected Attributes inherited from pcl::SampleConsensusModel< PointT >
std::string model_name_
 The model name. More...
 
PointCloudConstPtr input_
 A boost shared pointer to the point cloud data array. More...
 
IndicesPtr indices_
 A pointer to the vector of point indices to use. More...
 
double radius_min_
 The minimum and maximum radius limits for the model. More...
 
double radius_max_
 
double samples_radius_
 The maximum distance of subsequent samples from the first (radius search) More...
 
SearchPtr samples_radius_search_
 The search object for picking subsequent samples using radius search. More...
 
Indices shuffled_indices_
 Data containing a shuffled version of the indices. More...
 
boost::mt19937 rng_alg_
 Boost-based random number generator algorithm. More...
 
std::shared_ptr< boost::uniform_int<> > rng_dist_
 Boost-based random number generator distribution. More...
 
std::shared_ptr< boost::variate_generator< boost::mt19937 &, boost::uniform_int<> > > rng_gen_
 Boost-based random number generator. More...
 
std::vector< double > error_sqr_dists_
 A vector holding the distances to the computed model. More...
 
unsigned int sample_size_
 The size of a sample from which the model is computed. More...
 
unsigned int model_size_
 The number of coefficients in the model. More...
 
std::function< bool(const Eigen::VectorXf &)> custom_model_constraints_
 A user defined function that takes model coefficients and returns whether the model is acceptable or not. More...
 
- Protected Attributes inherited from pcl::SampleConsensusModelFromNormals< PointT, PointNT >
double normal_distance_weight_ {0.0}
 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...
 
- Static Protected Attributes inherited from pcl::SampleConsensusModel< PointT >
static const unsigned int max_sample_checks_ = 1000
 The maximum number of samples to try until we get a good one. More...
 

Detailed Description

template<typename PointT, typename PointNT>
class pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >

SampleConsensusModelNormalParallelPlane defines a model for 3D plane segmentation using additional surface normal constraints.

Basically this means that checking for inliers will not only involve a "distance to model" criterion, but also an additional "maximum angular deviation" between the plane's normal and the inlier points normals. In addition, the plane normal must lie parallel to a user-specified axis. This means that the plane itself will lie perpendicular to that axis, similar to SACMODEL_PERPENDICULAR_PLANE .

The model coefficients are defined as:

To set the influence of the surface normals in the inlier estimation process, set the normal weight (0.0-1.0), e.g.:

SampleConsensusModelNormalPlane<pcl::PointXYZ, pcl::Normal> sac_model;
...
sac_model.setNormalDistanceWeight (0.1);
...

In addition, the user can specify more constraints, such as:

Note
Please remember that you need to specify an angle > 0 in order to activate the axis-angle constraint!
Author
Radu B. Rusu and Jared Glover and Nico Blodow

Definition at line 86 of file sac_model_normal_parallel_plane.h.

Member Typedef Documentation

◆ ConstPtr

template<typename PointT , typename PointNT >
using pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::ConstPtr = shared_ptr<const SampleConsensusModelNormalParallelPlane<PointT, PointNT> >

Definition at line 104 of file sac_model_normal_parallel_plane.h.

◆ PointCloud

template<typename PointT , typename PointNT >
using pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::PointCloud = typename SampleConsensusModel<PointT>::PointCloud

Definition at line 96 of file sac_model_normal_parallel_plane.h.

◆ PointCloudConstPtr

template<typename PointT , typename PointNT >
using pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::PointCloudConstPtr = typename SampleConsensusModel<PointT>::PointCloudConstPtr

Definition at line 98 of file sac_model_normal_parallel_plane.h.

◆ PointCloudNConstPtr

template<typename PointT , typename PointNT >
using pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::PointCloudNConstPtr = typename SampleConsensusModelFromNormals<PointT, PointNT>::PointCloudNConstPtr

Definition at line 101 of file sac_model_normal_parallel_plane.h.

◆ PointCloudNPtr

template<typename PointT , typename PointNT >
using pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::PointCloudNPtr = typename SampleConsensusModelFromNormals<PointT, PointNT>::PointCloudNPtr

Definition at line 100 of file sac_model_normal_parallel_plane.h.

◆ PointCloudPtr

template<typename PointT , typename PointNT >
using pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::PointCloudPtr = typename SampleConsensusModel<PointT>::PointCloudPtr

Definition at line 97 of file sac_model_normal_parallel_plane.h.

◆ Ptr

template<typename PointT , typename PointNT >
using pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::Ptr = shared_ptr<SampleConsensusModelNormalParallelPlane<PointT, PointNT> >

Definition at line 103 of file sac_model_normal_parallel_plane.h.

Constructor & Destructor Documentation

◆ SampleConsensusModelNormalParallelPlane() [1/2]

template<typename PointT , typename PointNT >
pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::SampleConsensusModelNormalParallelPlane ( const PointCloudConstPtr cloud,
bool  random = false 
)
inline

Constructor for base SampleConsensusModelNormalParallelPlane.

Parameters
[in]cloudthe input point cloud dataset
[in]randomif true set the random seed to the current time, else set to 12345 (default: false)

Definition at line 110 of file sac_model_normal_parallel_plane.h.

References pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, and pcl::SampleConsensusModel< PointT >::sample_size_.

◆ SampleConsensusModelNormalParallelPlane() [2/2]

template<typename PointT , typename PointNT >
pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::SampleConsensusModelNormalParallelPlane ( const PointCloudConstPtr cloud,
const Indices indices,
bool  random = false 
)
inline

Constructor for base SampleConsensusModelNormalParallelPlane.

Parameters
[in]cloudthe input point cloud dataset
[in]indicesa vector of point indices to be used from cloud
[in]randomif true set the random seed to the current time, else set to 12345 (default: false)

Definition at line 129 of file sac_model_normal_parallel_plane.h.

References pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, and pcl::SampleConsensusModel< PointT >::sample_size_.

◆ ~SampleConsensusModelNormalParallelPlane()

template<typename PointT , typename PointNT >
pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::~SampleConsensusModelNormalParallelPlane ( )
overridedefault

Empty destructor.

Member Function Documentation

◆ getAxis()

template<typename PointT , typename PointNT >
Eigen::Vector3f pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::getAxis ( ) const
inline

Get the axis along which we need to search for a plane perpendicular to.

Definition at line 155 of file sac_model_normal_parallel_plane.h.

Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().

◆ getDistanceFromOrigin()

template<typename PointT , typename PointNT >
double pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::getDistanceFromOrigin ( ) const
inline

Get the distance of the plane from the origin.

Definition at line 176 of file sac_model_normal_parallel_plane.h.

Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().

◆ getEpsAngle()

template<typename PointT , typename PointNT >
double pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::getEpsAngle ( ) const
inline

Get the angle epsilon (delta) threshold.

Definition at line 166 of file sac_model_normal_parallel_plane.h.

Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().

◆ getEpsDist()

template<typename PointT , typename PointNT >
double pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::getEpsDist ( ) const
inline

Get the distance epsilon (delta) threshold.

Definition at line 186 of file sac_model_normal_parallel_plane.h.

◆ getModelType()

template<typename PointT , typename PointNT >
pcl::SacModel pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::getModelType ( ) const
inlineoverridevirtual

Return a unique id for this model (SACMODEL_NORMAL_PARALLEL_PLANE).

Implements pcl::SampleConsensusModel< PointT >.

Definition at line 190 of file sac_model_normal_parallel_plane.h.

References pcl::SACMODEL_NORMAL_PARALLEL_PLANE.

◆ isModelValid()

template<typename PointT , typename PointNT >
bool pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::isModelValid ( const Eigen::VectorXf &  model_coefficients) const
overrideprotectedvirtual

Check whether a model is valid given the user constraints.

Parameters
[in]model_coefficientsthe set of model coefficients

Reimplemented from pcl::SampleConsensusModel< PointT >.

Definition at line 48 of file sac_model_normal_parallel_plane.hpp.

◆ setAxis()

template<typename PointT , typename PointNT >
void pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::setAxis ( const Eigen::Vector3f &  ax)
inline

Set the axis along which we need to search for a plane perpendicular to.

Parameters
[in]axthe axis along which we need to search for a plane perpendicular to

Definition at line 151 of file sac_model_normal_parallel_plane.h.

Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().

◆ setDistanceFromOrigin()

template<typename PointT , typename PointNT >
void pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::setDistanceFromOrigin ( const double  d)
inline

Set the distance we expect the plane to be from the origin.

Parameters
[in]ddistance from the template plane to the origin

Definition at line 172 of file sac_model_normal_parallel_plane.h.

Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().

◆ setEpsAngle()

template<typename PointT , typename PointNT >
void pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::setEpsAngle ( const double  ea)
inline

Set the angle epsilon (delta) threshold.

Parameters
[in]eathe maximum allowed deviation from 90 degrees between the plane normal and the given axis.
Note
You need to specify an angle > 0 in order to activate the axis-angle constraint!

Definition at line 162 of file sac_model_normal_parallel_plane.h.

Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().

◆ setEpsDist()

template<typename PointT , typename PointNT >
void pcl::SampleConsensusModelNormalParallelPlane< PointT, PointNT >::setEpsDist ( const double  delta)
inline

Set the distance epsilon (delta) threshold.

Parameters
[in]deltathe maximum allowed deviation from the template distance from the origin

Definition at line 182 of file sac_model_normal_parallel_plane.h.


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