|
Point Cloud Library (PCL) 1.15.1
|
SampleConsensusModelParallelLine defines a model for 3D line segmentation using additional angular constraints. More...
#include <pcl/sample_consensus/sac_model_parallel_line.h>
Public Types | |
| using | PointCloud = typename SampleConsensusModelLine<PointT>::PointCloud |
| using | PointCloudPtr = typename SampleConsensusModelLine<PointT>::PointCloudPtr |
| using | PointCloudConstPtr = typename SampleConsensusModelLine<PointT>::PointCloudConstPtr |
| using | Ptr = shared_ptr<SampleConsensusModelParallelLine<PointT> > |
| using | ConstPtr = shared_ptr<const SampleConsensusModelParallelLine<PointT>> |
| Public Types inherited from pcl::SampleConsensusModelLine< PointT > | |
| using | PointCloud = typename SampleConsensusModel<PointT>::PointCloud |
| using | PointCloudPtr = typename SampleConsensusModel<PointT>::PointCloudPtr |
| using | PointCloudConstPtr = typename SampleConsensusModel<PointT>::PointCloudConstPtr |
| using | Ptr = shared_ptr<SampleConsensusModelLine<PointT> > |
| using | ConstPtr = shared_ptr<const SampleConsensusModelLine<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 Member Functions | |
| SampleConsensusModelParallelLine (const PointCloudConstPtr &cloud, bool random=false) | |
| Constructor for base SampleConsensusModelParallelLine. | |
| SampleConsensusModelParallelLine (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false) | |
| Constructor for base SampleConsensusModelParallelLine. | |
| ~SampleConsensusModelParallelLine () override=default | |
| Empty destructor. | |
| void | setAxis (const Eigen::Vector3f &ax) |
| Set the axis along which we need to search for a line. | |
| Eigen::Vector3f | getAxis () const |
| Get the axis along which we need to search for a line. | |
| void | setEpsAngle (const double ea) |
| Set the angle epsilon (delta) threshold. | |
| double | getEpsAngle () const |
| Get the angle epsilon (delta) threshold (in radians). | |
| 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. | |
| 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. | |
| void | getDistancesToModel (const Eigen::VectorXf &model_coefficients, std::vector< double > &distances) const override |
| Compute all squared distances from the cloud data to a given line model. | |
| pcl::SacModel | getModelType () const override |
| Return a unique id for this model (SACMODEL_PARALLEL_LINE). | |
| Public Member Functions inherited from pcl::SampleConsensusModelLine< PointT > | |
| SampleConsensusModelLine (const PointCloudConstPtr &cloud, bool random=false) | |
| Constructor for base SampleConsensusModelLine. | |
| SampleConsensusModelLine (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false) | |
| Constructor for base SampleConsensusModelLine. | |
| ~SampleConsensusModelLine () override=default | |
| Empty destructor. | |
| bool | computeModelCoefficients (const Indices &samples, Eigen::VectorXf &model_coefficients) const override |
| Check whether the given index samples can form a valid line model, compute the model coefficients from these samples and store them internally in model_coefficients_. | |
| void | optimizeModelCoefficients (const Indices &inliers, const Eigen::VectorXf &model_coefficients, Eigen::VectorXf &optimized_coefficients) const override |
| Recompute the line coefficients using the given inlier set and return them to the user. | |
| 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 line model. | |
| 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 line model coefficients. | |
| Public Member Functions inherited from pcl::SampleConsensusModel< PointT > | |
| SampleConsensusModel (const PointCloudConstPtr &cloud, bool random=false) | |
| Constructor for base SampleConsensusModel. | |
| SampleConsensusModel (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false) | |
| Constructor for base SampleConsensusModel. | |
| virtual | ~SampleConsensusModel ()=default |
| Destructor for base SampleConsensusModel. | |
| virtual void | getSamples (int &iterations, Indices &samples) |
| Get a set of random data samples and return them as point indices. | |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| Provide a pointer to the input dataset. | |
| PointCloudConstPtr | getInputCloud () const |
| Get a pointer to the input point cloud dataset. | |
| void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| void | setIndices (const Indices &indices) |
| Provide the vector of indices that represents the input data. | |
| IndicesPtr | getIndices () const |
| Get a pointer to the vector of indices used. | |
| const std::string & | getClassName () const |
| Get a string representation of the name of this class. | |
| unsigned int | getSampleSize () const |
| Return the size of a sample from which the model is computed. | |
| unsigned int | getModelSize () const |
| Return the number of coefficients in the model. | |
| 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). | |
| 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. | |
| void | setModelConstraints (std::function< bool(const Eigen::VectorXf &)> function) |
| This can be used to impose any kind of constraint on the model, e.g. | |
| void | setSamplesMaxDist (const double &radius, SearchPtr search) |
| Set the maximum distance allowed when drawing random samples. | |
| void | getSamplesMaxDist (double &radius) const |
| Get maximum distance allowed when drawing random samples. | |
| double | computeVariance (const std::vector< double > &error_sqr_dists) const |
| Compute the variance of the errors to the model. | |
| double | computeVariance () const |
| Compute the variance of the errors to the model from the internally estimated vector of distances. | |
Protected Member Functions | |
| bool | isModelValid (const Eigen::VectorXf &model_coefficients) const override |
| Check whether a model is valid given the user constraints. | |
| Protected Member Functions inherited from pcl::SampleConsensusModelLine< PointT > | |
| bool | isSampleGood (const Indices &samples) const override |
| Check if a sample of indices results in a good sample of points indices. | |
| Protected Member Functions inherited from pcl::SampleConsensusModel< PointT > | |
| SampleConsensusModel (bool random=false) | |
| Empty constructor for base SampleConsensusModel. | |
| void | drawIndexSample (Indices &sample) |
| Fills a sample array with random samples from the indices_ vector. | |
| 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_. | |
| int | rnd () |
| Boost-based random number generator. | |
Protected Attributes | |
| Eigen::Vector3f | axis_ |
| The axis along which we need to search for a line. | |
| double | eps_angle_ |
| The maximum allowed difference between the line direction and the given axis. | |
| Protected Attributes inherited from pcl::SampleConsensusModel< PointT > | |
| std::string | model_name_ |
| The model name. | |
| PointCloudConstPtr | input_ |
| A boost shared pointer to the point cloud data array. | |
| IndicesPtr | indices_ |
| A pointer to the vector of point indices to use. | |
| double | radius_min_ |
| The minimum and maximum radius limits for the model. | |
| double | radius_max_ |
| double | samples_radius_ |
| The maximum distance of subsequent samples from the first (radius search). | |
| SearchPtr | samples_radius_search_ |
| The search object for picking subsequent samples using radius search. | |
| Indices | shuffled_indices_ |
| Data containing a shuffled version of the indices. | |
| boost::mt19937 | rng_alg_ |
| Boost-based random number generator algorithm. | |
| std::shared_ptr< boost::uniform_int<> > | rng_dist_ |
| Boost-based random number generator distribution. | |
| std::shared_ptr< boost::variate_generator< boost::mt19937 &, boost::uniform_int<> > > | rng_gen_ |
| Boost-based random number generator. | |
| std::vector< double > | error_sqr_dists_ |
| A vector holding the distances to the computed model. | |
| unsigned int | sample_size_ |
| The size of a sample from which the model is computed. | |
| unsigned int | model_size_ |
| The number of coefficients in the model. | |
| 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. | |
Additional Inherited Members | |
| 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. | |
SampleConsensusModelParallelLine defines a model for 3D line segmentation using additional angular constraints.
Checking for inliers will not only involve a "distance to model" criterion, but also an additional "maximum angular deviation" between the line's direction and a user-specified axis.
The model coefficients are defined as:
Definition at line 65 of file sac_model_parallel_line.h.
| using pcl::SampleConsensusModelParallelLine< PointT >::ConstPtr = shared_ptr<const SampleConsensusModelParallelLine<PointT>> |
Definition at line 75 of file sac_model_parallel_line.h.
| using pcl::SampleConsensusModelParallelLine< PointT >::PointCloud = typename SampleConsensusModelLine<PointT>::PointCloud |
Definition at line 70 of file sac_model_parallel_line.h.
| using pcl::SampleConsensusModelParallelLine< PointT >::PointCloudConstPtr = typename SampleConsensusModelLine<PointT>::PointCloudConstPtr |
Definition at line 72 of file sac_model_parallel_line.h.
| using pcl::SampleConsensusModelParallelLine< PointT >::PointCloudPtr = typename SampleConsensusModelLine<PointT>::PointCloudPtr |
Definition at line 71 of file sac_model_parallel_line.h.
| using pcl::SampleConsensusModelParallelLine< PointT >::Ptr = shared_ptr<SampleConsensusModelParallelLine<PointT> > |
Definition at line 74 of file sac_model_parallel_line.h.
|
inline |
Constructor for base SampleConsensusModelParallelLine.
| [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 81 of file sac_model_parallel_line.h.
References axis_, eps_angle_, pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, pcl::SampleConsensusModel< PointT >::sample_size_, and pcl::SampleConsensusModelLine< PointT >::SampleConsensusModelLine().
|
inline |
Constructor for base SampleConsensusModelParallelLine.
| [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 97 of file sac_model_parallel_line.h.
References axis_, eps_angle_, pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, pcl::SampleConsensusModel< PointT >::sample_size_, and pcl::SampleConsensusModelLine< PointT >::SampleConsensusModelLine().
|
overridedefault |
Empty destructor.
|
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 |
Reimplemented from pcl::SampleConsensusModelLine< PointT >.
Definition at line 64 of file sac_model_parallel_line.hpp.
References pcl::SampleConsensusModelLine< PointT >::countWithinDistance(), and isModelValid().
|
inline |
Get the axis along which we need to search for a line.
Definition at line 120 of file sac_model_parallel_line.h.
References axis_.
Referenced by pcl::SACSegmentation< PointT >::initSACModel().
|
overridevirtual |
Compute all squared distances from the cloud data to a given line model.
| [in] | model_coefficients | the coefficients of a line model that we need to compute distances to |
| [out] | distances | the resultant estimated squared distances |
Reimplemented from pcl::SampleConsensusModelLine< PointT >.
Definition at line 78 of file sac_model_parallel_line.hpp.
References pcl::SampleConsensusModelLine< PointT >::getDistancesToModel(), and isModelValid().
|
inline |
Get the angle epsilon (delta) threshold (in radians).
Definition at line 129 of file sac_model_parallel_line.h.
References eps_angle_.
Referenced by pcl::SACSegmentation< PointT >::initSACModel().
|
inlineoverridevirtual |
Return a unique id for this model (SACMODEL_PARALLEL_LINE).
Reimplemented from pcl::SampleConsensusModelLine< PointT >.
Definition at line 161 of file sac_model_parallel_line.h.
References pcl::SACMODEL_PARALLEL_LINE.
|
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 93 of file sac_model_parallel_line.hpp.
References axis_, eps_angle_, pcl::getAngle3D(), pcl::SampleConsensusModel< PointT >::isModelValid(), and M_PI.
Referenced by countWithinDistance(), getDistancesToModel(), and selectWithinDistance().
|
overridevirtual |
Select all the points which respect the given model coefficients as inliers.
| [in] | model_coefficients | the coefficients of a line 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 |
Reimplemented from pcl::SampleConsensusModelLine< PointT >.
Definition at line 49 of file sac_model_parallel_line.hpp.
References isModelValid(), and pcl::SampleConsensusModelLine< PointT >::selectWithinDistance().
|
inline |
Set the axis along which we need to search for a line.
| [in] | ax | the axis along which we need to search for a line |
Definition at line 116 of file sac_model_parallel_line.h.
References axis_.
Referenced by pcl::SACSegmentation< PointT >::initSACModel().
|
inline |
Set the angle epsilon (delta) threshold.
| [in] | ea | the maximum allowed difference between the line direction and the given axis (in radians). |
Definition at line 126 of file sac_model_parallel_line.h.
References eps_angle_.
Referenced by pcl::SACSegmentation< PointT >::initSACModel().
|
protected |
The axis along which we need to search for a line.
Definition at line 174 of file sac_model_parallel_line.h.
Referenced by getAxis(), isModelValid(), SampleConsensusModelParallelLine(), SampleConsensusModelParallelLine(), and setAxis().
|
protected |
The maximum allowed difference between the line direction and the given axis.
Definition at line 177 of file sac_model_parallel_line.h.
Referenced by getEpsAngle(), isModelValid(), SampleConsensusModelParallelLine(), SampleConsensusModelParallelLine(), and setEpsAngle().