Point Cloud Library (PCL)
1.14.1-dev
|
SampleConsensusModelCone defines a model for 3D cone segmentation. More...
#include <pcl/sample_consensus/sac_model_cone.h>
Public Member Functions | |
SampleConsensusModelCone (const PointCloudConstPtr &cloud, bool random=false) | |
Constructor for base SampleConsensusModelCone. More... | |
SampleConsensusModelCone (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false) | |
Constructor for base SampleConsensusModelCone. More... | |
SampleConsensusModelCone (const SampleConsensusModelCone &source) | |
Copy constructor. More... | |
~SampleConsensusModelCone () override=default | |
Empty destructor. More... | |
SampleConsensusModelCone & | operator= (const SampleConsensusModelCone &source) |
Copy constructor. More... | |
void | setEpsAngle (double ea) |
Set the angle epsilon (delta) threshold. More... | |
double | getEpsAngle () const |
Get the angle epsilon (delta) threshold. More... | |
void | setAxis (const Eigen::Vector3f &ax) |
Set the axis along which we need to search for a cone direction. More... | |
Eigen::Vector3f | getAxis () const |
Get the axis along which we need to search for a cone direction. More... | |
void | setMinMaxOpeningAngle (const double &min_angle, const double &max_angle) |
Set the minimum and maximum allowable opening angle for a cone model given from a user. More... | |
void | getMinMaxOpeningAngle (double &min_angle, double &max_angle) const |
Get the opening angle which we need minimum to validate a cone model. More... | |
bool | computeModelCoefficients (const Indices &samples, Eigen::VectorXf &model_coefficients) const override |
Check whether the given index samples can form a valid cone model, compute the model coefficients from these samples and store them 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 cone 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 cone 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 cone 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 cone model coefficients. More... | |
pcl::SacModel | getModelType () const override |
Return a unique id for this model (SACMODEL_CONE). 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 | |
double | pointToAxisDistance (const Eigen::Vector4f &pt, const Eigen::VectorXf &model_coefficients) const |
Get the distance from a point to a line (represented by a point and a direction) More... | |
bool | isModelValid (const Eigen::VectorXf &model_coefficients) const override |
Check whether a model is valid given the user constraints. More... | |
bool | isSampleGood (const Indices &samples) const override |
Check if a sample of indices results in a good sample of points indices. 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... | |
SampleConsensusModelCone defines a model for 3D cone segmentation.
The model coefficients are defined as:
Definition at line 67 of file sac_model_cone.h.
using pcl::SampleConsensusModelCone< PointT, PointNT >::ConstPtr = shared_ptr<const SampleConsensusModelCone<PointT, PointNT> > |
Definition at line 84 of file sac_model_cone.h.
using pcl::SampleConsensusModelCone< PointT, PointNT >::PointCloud = typename SampleConsensusModel<PointT>::PointCloud |
Definition at line 79 of file sac_model_cone.h.
using pcl::SampleConsensusModelCone< PointT, PointNT >::PointCloudConstPtr = typename SampleConsensusModel<PointT>::PointCloudConstPtr |
Definition at line 81 of file sac_model_cone.h.
using pcl::SampleConsensusModelCone< PointT, PointNT >::PointCloudPtr = typename SampleConsensusModel<PointT>::PointCloudPtr |
Definition at line 80 of file sac_model_cone.h.
using pcl::SampleConsensusModelCone< PointT, PointNT >::Ptr = shared_ptr<SampleConsensusModelCone<PointT, PointNT> > |
Definition at line 83 of file sac_model_cone.h.
|
inline |
Constructor for base SampleConsensusModelCone.
[in] | cloud | the input point cloud dataset |
[in] | random | if true set the random seed to the current time, else set to 12345 (default: false) |
Definition at line 90 of file sac_model_cone.h.
References pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, and pcl::SampleConsensusModel< PointT >::sample_size_.
|
inline |
Constructor for base SampleConsensusModelCone.
[in] | cloud | the input point cloud dataset |
[in] | indices | a vector of point indices to be used from cloud |
[in] | random | if true set the random seed to the current time, else set to 12345 (default: false) |
Definition at line 108 of file sac_model_cone.h.
References pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, and pcl::SampleConsensusModel< PointT >::sample_size_.
|
inline |
Copy constructor.
[in] | source | the model to copy into this |
Definition at line 126 of file sac_model_cone.h.
References pcl::SampleConsensusModel< PointT >::model_name_.
|
overridedefault |
Empty destructor.
|
overridevirtual |
Check whether the given index samples can form a valid cone model, compute the model coefficients from these samples and store them in model_coefficients.
The cone coefficients are: apex, axis_direction, opening_angle.
[in] | samples | the point indices found as possible good candidates for creating a valid model |
[out] | model_coefficients | the resultant model coefficients |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 60 of file sac_model_cone.hpp.
|
overridevirtual |
Count all the points which respect the given model coefficients as inliers.
[in] | model_coefficients | the coefficients of a model that we need to compute distances to |
[in] | threshold | maximum admissible distance threshold for determining the inliers from the outliers |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 274 of file sac_model_cone.hpp.
References pcl::getAngle3D(), and M_PI.
|
overridevirtual |
Verify whether a subset of indices verifies the given cone model coefficients.
[in] | indices | the data indices that need to be tested against the cone model |
[in] | model_coefficients | the cone model coefficients |
[in] | threshold | a maximum admissible distance threshold for determining the inliers from the outliers |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 472 of file sac_model_cone.hpp.
|
inline |
Get the axis along which we need to search for a cone direction.
Definition at line 171 of file sac_model_cone.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
overridevirtual |
Compute all distances from the cloud data to a given cone model.
[in] | model_coefficients | the coefficients of a cone model that we need to compute distances to |
[out] | distances | the resultant estimated distances |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 150 of file sac_model_cone.hpp.
References pcl::getAngle3D(), and M_PI.
|
inline |
Get the angle epsilon (delta) threshold.
Definition at line 161 of file sac_model_cone.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
inline |
Get the opening angle which we need minimum to validate a cone model.
[out] | min_angle | the minimum allowable opening angle of a cone model |
[out] | max_angle | the maximum allowable opening angle of a cone model |
Definition at line 190 of file sac_model_cone.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
inlineoverridevirtual |
Return a unique id for this model (SACMODEL_CONE).
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 271 of file sac_model_cone.h.
References pcl::SACMODEL_CONE.
|
overrideprotectedvirtual |
Check whether a model is valid given the user constraints.
[in] | model_coefficients | the set of model coefficients |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Definition at line 525 of file sac_model_cone.hpp.
References pcl::getAngle3D(), and M_PI.
|
overrideprotectedvirtual |
Check if a sample of indices results in a good sample of points indices.
Pure virtual.
[in] | samples | the resultant index samples |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 48 of file sac_model_cone.hpp.
|
inline |
Copy constructor.
[in] | source | the model to copy into this |
Definition at line 142 of file sac_model_cone.h.
|
overridevirtual |
Recompute the cone coefficients using the given inlier set and return them to the user.
[in] | inliers | the data inliers found as supporting the model |
[in] | model_coefficients | the initial guess for the optimization |
[out] | optimized_coefficients | the resultant recomputed coefficients after non-linear optimization |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 332 of file sac_model_cone.hpp.
References pcl::internal::optimizeModelCoefficientsCone().
|
protected |
Get the distance from a point to a line (represented by a point and a direction)
[in] | pt | a point |
[in] | model_coefficients | the line coefficients (a point on the line, line direction) |
Definition at line 515 of file sac_model_cone.hpp.
References pcl::sqrPointToLineDistance().
|
overridevirtual |
Create a new point cloud with inliers projected onto the cone model.
[in] | inliers | the data inliers that we want to project on the cone model |
[in] | model_coefficients | the coefficients of a cone model |
[out] | projected_points | the resultant projected points |
[in] | copy_data_fields | set to true if we need to copy the other data fields |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 376 of file sac_model_cone.hpp.
References pcl::PointCloud< PointT >::header, pcl::PointCloud< PointT >::height, pcl::PointCloud< PointT >::is_dense, pcl::PointCloud< PointT >::resize(), pcl::PointCloud< PointT >::size(), and pcl::PointCloud< PointT >::width.
|
overridevirtual |
Select all the points which respect the given model coefficients as inliers.
[in] | model_coefficients | the coefficients of a cone model that we need to compute distances to |
[in] | threshold | a maximum admissible distance threshold for determining the inliers from the outliers |
[out] | inliers | the resultant model inliers |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 206 of file sac_model_cone.hpp.
References pcl::geometry::distance(), pcl::getAngle3D(), and M_PI.
|
inline |
Set the axis along which we need to search for a cone direction.
[in] | ax | the axis along which we need to search for a cone direction |
Definition at line 167 of file sac_model_cone.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
inline |
Set the angle epsilon (delta) threshold.
[in] | ea | the maximum allowed difference between the cone's axis and the given axis. |
Definition at line 157 of file sac_model_cone.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().
|
inline |
Set the minimum and maximum allowable opening angle for a cone model given from a user.
[in] | min_angle | the minimum allowable opening angle of a cone model |
[in] | max_angle | the maximum allowable opening angle of a cone model |
Definition at line 179 of file sac_model_cone.h.
Referenced by pcl::SACSegmentationFromNormals< PointT, PointNT >::initSACModel().