RandomSampleConsensus represents an implementation of the RANSAC (RAndom SAmple Consensus) algorithm, as described in: "Matching with PROSAC – Progressive Sample Consensus", Chum, O. More...
#include <pcl/sample_consensus/prosac.h>


Public Types | |
| typedef boost::shared_ptr < ProgressiveSampleConsensus > | Ptr |
| typedef boost::shared_ptr < const ProgressiveSampleConsensus > | ConstPtr |
Public Member Functions | |
| ProgressiveSampleConsensus (const SampleConsensusModelPtr &model) | |
| PROSAC (Progressive SAmple Consensus) main constructor. | |
| ProgressiveSampleConsensus (const SampleConsensusModelPtr &model, double threshold) | |
| PROSAC (Progressive SAmple Consensus) main constructor. | |
| bool | computeModel (int debug_verbosity_level=0) |
| Compute the actual model and find the inliers. | |
RandomSampleConsensus represents an implementation of the RANSAC (RAndom SAmple Consensus) algorithm, as described in: "Matching with PROSAC – Progressive Sample Consensus", Chum, O.
and Matas, J.G., CVPR, I: 220-226 2005.
Definition at line 56 of file prosac.h.
| typedef boost::shared_ptr<const ProgressiveSampleConsensus> pcl::ProgressiveSampleConsensus< PointT >::ConstPtr |
Reimplemented from pcl::SampleConsensus< PointT >.
| typedef boost::shared_ptr<ProgressiveSampleConsensus> pcl::ProgressiveSampleConsensus< PointT >::Ptr |
Reimplemented from pcl::SampleConsensus< PointT >.
| pcl::ProgressiveSampleConsensus< PointT >::ProgressiveSampleConsensus | ( | const SampleConsensusModelPtr & | model | ) | [inline] |
PROSAC (Progressive SAmple Consensus) main constructor.
| [in] | model | a Sample Consensus model |
Definition at line 76 of file prosac.h.
References pcl::SampleConsensus< PointT >::max_iterations_.
| pcl::ProgressiveSampleConsensus< PointT >::ProgressiveSampleConsensus | ( | const SampleConsensusModelPtr & | model, | |
| double | threshold | |||
| ) | [inline] |
PROSAC (Progressive SAmple Consensus) main constructor.
| [in] | model | a Sample Consensus model |
| [in] | threshold | distance to model threshold |
Definition at line 87 of file prosac.h.
References pcl::SampleConsensus< PointT >::max_iterations_.
| bool pcl::ProgressiveSampleConsensus< PointT >::computeModel | ( | int | debug_verbosity_level = 0 |
) | [inline, virtual] |
Compute the actual model and find the inliers.
| [in] | debug_verbosity_level | enable/disable on-screen debug information and set the verbosity level |
Implements pcl::SampleConsensus< PointT >.
Definition at line 54 of file prosac.hpp.
References pcl::SampleConsensus< PointT >::inliers_, pcl::SampleConsensus< PointT >::iterations_, pcl::SampleConsensus< PointT >::max_iterations_, pcl::SampleConsensus< PointT >::model_, pcl::SampleConsensus< PointT >::model_coefficients_, pcl::SampleConsensus< PointT >::sac_model_, and pcl::SampleConsensus< PointT >::threshold_.