|
Point Cloud Library (PCL)
1.6.0
|
SampleConsensus represents the base class. More...
#include <pcl/sample_consensus/sac.h>
Public Types | |
| typedef boost::shared_ptr < SampleConsensus > | Ptr |
| typedef boost::shared_ptr < const SampleConsensus > | ConstPtr |
Public Member Functions | |
| SampleConsensus (const SampleConsensusModelPtr &model, bool random=false) | |
| Constructor for base SAC. | |
| SampleConsensus (const SampleConsensusModelPtr &model, double threshold, bool random=false) | |
| Constructor for base SAC. | |
| virtual | ~SampleConsensus () |
| Destructor for base SAC. | |
| void | setDistanceThreshold (double threshold) |
| Set the distance to model threshold. | |
| double | getDistanceThreshold () |
| Get the distance to model threshold, as set by the user. | |
| void | setMaxIterations (int max_iterations) |
| Set the maximum number of iterations. | |
| int | getMaxIterations () |
| Get the maximum number of iterations, as set by the user. | |
| void | setProbability (double probability) |
| Set the desired probability of choosing at least one sample free from outliers. | |
| double | getProbability () |
| Obtain the probability of choosing at least one sample free from outliers, as set by the user. | |
| virtual bool | computeModel (int debug_verbosity_level=0)=0 |
| Compute the actual model. | |
| void | getRandomSamples (const boost::shared_ptr< std::vector< int > > &indices, size_t nr_samples, std::set< int > &indices_subset) |
| Get a set of randomly selected indices. | |
| void | getModel (std::vector< int > &model) |
| Return the best model found so far. | |
| void | getInliers (std::vector< int > &inliers) |
| Return the best set of inliers found so far for this model. | |
| void | getModelCoefficients (Eigen::VectorXf &model_coefficients) |
| Return the model coefficients of the best model found so far. | |
SampleConsensus represents the base class.
All sample consensus methods must inherit from this class.
| typedef boost::shared_ptr<const SampleConsensus> pcl::SampleConsensus< T >::ConstPtr |
| typedef boost::shared_ptr<SampleConsensus> pcl::SampleConsensus< T >::Ptr |
| pcl::SampleConsensus< T >::SampleConsensus | ( | const SampleConsensusModelPtr & | model, |
| bool | random = false |
||
| ) | [inline] |
| pcl::SampleConsensus< T >::SampleConsensus | ( | const SampleConsensusModelPtr & | model, |
| double | threshold, | ||
| bool | random = false |
||
| ) | [inline] |
| virtual pcl::SampleConsensus< T >::~SampleConsensus | ( | ) | [inline, virtual] |
| virtual bool pcl::SampleConsensus< T >::computeModel | ( | int | debug_verbosity_level = 0 | ) | [pure virtual] |
Compute the actual model.
Pure virtual.
Implemented in pcl::MaximumLikelihoodSampleConsensus< PointT >, pcl::RandomizedMEstimatorSampleConsensus< PointT >, pcl::ProgressiveSampleConsensus< PointT >, pcl::RandomizedRandomSampleConsensus< PointT >, pcl::MEstimatorSampleConsensus< PointT >, pcl::LeastMedianSquares< PointT >, and pcl::RandomSampleConsensus< PointT >.
| double pcl::SampleConsensus< T >::getDistanceThreshold | ( | ) | [inline] |
| void pcl::SampleConsensus< T >::getInliers | ( | std::vector< int > & | inliers | ) | [inline] |
| int pcl::SampleConsensus< T >::getMaxIterations | ( | ) | [inline] |
| void pcl::SampleConsensus< T >::getModel | ( | std::vector< int > & | model | ) | [inline] |
| void pcl::SampleConsensus< T >::getModelCoefficients | ( | Eigen::VectorXf & | model_coefficients | ) | [inline] |
| double pcl::SampleConsensus< T >::getProbability | ( | ) | [inline] |
| void pcl::SampleConsensus< T >::getRandomSamples | ( | const boost::shared_ptr< std::vector< int > > & | indices, |
| size_t | nr_samples, | ||
| std::set< int > & | indices_subset | ||
| ) | [inline] |
| void pcl::SampleConsensus< T >::setDistanceThreshold | ( | double | threshold | ) | [inline] |
| void pcl::SampleConsensus< T >::setMaxIterations | ( | int | max_iterations | ) | [inline] |
| void pcl::SampleConsensus< T >::setProbability | ( | double | probability | ) | [inline] |
1.7.6.1