RandomizedRandomSampleConsensus represents an implementation of the RRANSAC (Randomized RAndom SAmple Consensus), as described in "Randomized RANSAC with Td,d test", O. Chum and J. Matas, Proc. British Machine Vision Conf. (BMVC '02), vol. 2, BMVA, pp. 448-457, 2002. More...
#include <rransac.h>
Public Member Functions | |
bool | computeModel (int debug_verbosity_level=0) |
Compute the actual model and find the inliers. | |
double | getFractionNrPretest () |
Get the percentage of points to pre-test. | |
RandomizedRandomSampleConsensus (const SampleConsensusModelPtr &model) | |
RANSAC (Randomized RAndom SAmple Consensus) main constructor. | |
RandomizedRandomSampleConsensus (const SampleConsensusModelPtr &model, double threshold) | |
RRANSAC (RAndom SAmple Consensus) main constructor. | |
void | setFractionNrPretest (double nr_pretest) |
Set the percentage of points to pre-test. | |
Private Types | |
typedef SampleConsensusModel < PointT >::Ptr | SampleConsensusModelPtr |
Private Attributes | |
double | fraction_nr_pretest_ |
Number of samples to randomly pre-test, in percents. |
RandomizedRandomSampleConsensus represents an implementation of the RRANSAC (Randomized RAndom SAmple Consensus), as described in "Randomized RANSAC with Td,d test", O. Chum and J. Matas, Proc. British Machine Vision Conf. (BMVC '02), vol. 2, BMVA, pp. 448-457, 2002.
typedef SampleConsensusModel<PointT>::Ptr pcl::RandomizedRandomSampleConsensus< PointT >::SampleConsensusModelPtr [private] |
Reimplemented from pcl::SampleConsensus< PointT >.
pcl::RandomizedRandomSampleConsensus< PointT >::RandomizedRandomSampleConsensus | ( | const SampleConsensusModelPtr & | model | ) | [inline] |
pcl::RandomizedRandomSampleConsensus< PointT >::RandomizedRandomSampleConsensus | ( | const SampleConsensusModelPtr & | model, |
double | threshold | ||
) | [inline] |
bool pcl::RandomizedRandomSampleConsensus< PointT >::computeModel | ( | int | debug_verbosity_level = 0 | ) | [virtual] |
Compute the actual model and find the inliers.
debug_verbosity_level | enable/disable on-screen debug information and set the verbosity level |
Implements pcl::SampleConsensus< PointT >.
Definition at line 45 of file rransac.hpp.
double pcl::RandomizedRandomSampleConsensus< PointT >::getFractionNrPretest | ( | ) | [inline] |
void pcl::RandomizedRandomSampleConsensus< PointT >::setFractionNrPretest | ( | double | nr_pretest | ) | [inline] |
double pcl::RandomizedRandomSampleConsensus< PointT >::fraction_nr_pretest_ [private] |