Point Cloud Library (PCL)  1.6.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Types | Public Member Functions
pcl::RandomizedMEstimatorSampleConsensus< PointT > Class Template Reference

RandomizedMEstimatorSampleConsensus represents an implementation of the RMSAC (Randomized M-estimator SAmple Consensus) algorithm, which basically adds a Td,d test (see RandomizedRandomSampleConsensus) to an MSAC estimator (see MEstimatorSampleConsensus). More...

#include <pcl/sample_consensus/rmsac.h>

Inheritance diagram for pcl::RandomizedMEstimatorSampleConsensus< PointT >:
Inheritance graph
[legend]
Collaboration diagram for pcl::RandomizedMEstimatorSampleConsensus< PointT >:
Collaboration graph
[legend]

List of all members.

Public Types

typedef boost::shared_ptr
< SampleConsensus
Ptr
typedef boost::shared_ptr
< const SampleConsensus
ConstPtr

Public Member Functions

 RandomizedMEstimatorSampleConsensus (const SampleConsensusModelPtr &model)
 RMSAC (Randomized M-estimator SAmple Consensus) main constructor.
 RandomizedMEstimatorSampleConsensus (const SampleConsensusModelPtr &model, double threshold)
 RMSAC (Randomized M-estimator SAmple Consensus) main constructor.
bool computeModel (int debug_verbosity_level=0)
 Compute the actual model and find the inliers.
void setFractionNrPretest (double nr_pretest)
 Set the percentage of points to pre-test.
double getFractionNrPretest ()
 Get the percentage of points to pre-test.
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.
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.

Detailed Description

template<typename PointT>
class pcl::RandomizedMEstimatorSampleConsensus< PointT >

RandomizedMEstimatorSampleConsensus represents an implementation of the RMSAC (Randomized M-estimator SAmple Consensus) algorithm, which basically adds a Td,d test (see RandomizedRandomSampleConsensus) to an MSAC estimator (see MEstimatorSampleConsensus).

Note:
RMSAC is useful in situations where most of the data samples belong to the model, and a fast outlier rejection algorithm is needed.
Author:
Radu Bogdan Rusu

Definition at line 56 of file rmsac.h.


Member Typedef Documentation

typedef boost::shared_ptr<const SampleConsensus> pcl::SampleConsensus< PointT >::ConstPtr [inherited]

Definition at line 65 of file sac.h.

typedef boost::shared_ptr<SampleConsensus> pcl::SampleConsensus< PointT >::Ptr [inherited]

Definition at line 61 of file sac.h.


Constructor & Destructor Documentation

template<typename PointT >
pcl::RandomizedMEstimatorSampleConsensus< PointT >::RandomizedMEstimatorSampleConsensus ( const SampleConsensusModelPtr &  model) [inline]

RMSAC (Randomized M-estimator SAmple Consensus) main constructor.

Parameters:
modela Sample Consensus model

Definition at line 73 of file rmsac.h.

template<typename PointT >
pcl::RandomizedMEstimatorSampleConsensus< PointT >::RandomizedMEstimatorSampleConsensus ( const SampleConsensusModelPtr &  model,
double  threshold 
) [inline]

RMSAC (Randomized M-estimator SAmple Consensus) main constructor.

Parameters:
modela Sample Consensus model
thresholddistance to model threshold

Definition at line 84 of file rmsac.h.


Member Function Documentation

template<typename PointT >
bool pcl::RandomizedMEstimatorSampleConsensus< PointT >::computeModel ( int  debug_verbosity_level = 0) [virtual]

Compute the actual model and find the inliers.

Parameters:
debug_verbosity_levelenable/disable on-screen debug information and set the verbosity level

Implements pcl::SampleConsensus< PointT >.

Definition at line 45 of file rmsac.hpp.

double pcl::SampleConsensus< PointT >::getDistanceThreshold ( ) [inline, inherited]

Get the distance to model threshold, as set by the user.

Definition at line 125 of file sac.h.

template<typename PointT >
double pcl::RandomizedMEstimatorSampleConsensus< PointT >::getFractionNrPretest ( ) [inline]

Get the percentage of points to pre-test.

Definition at line 102 of file rmsac.h.

void pcl::SampleConsensus< PointT >::getInliers ( std::vector< int > &  inliers) [inline, inherited]

Return the best set of inliers found so far for this model.

Parameters:
[out]inliersthe resultant set of inliers

Definition at line 178 of file sac.h.

int pcl::SampleConsensus< PointT >::getMaxIterations ( ) [inline, inherited]

Get the maximum number of iterations, as set by the user.

Definition at line 135 of file sac.h.

void pcl::SampleConsensus< PointT >::getModel ( std::vector< int > &  model) [inline, inherited]

Return the best model found so far.

Parameters:
[out]modelthe resultant model

Definition at line 172 of file sac.h.

void pcl::SampleConsensus< PointT >::getModelCoefficients ( Eigen::VectorXf &  model_coefficients) [inline, inherited]

Return the model coefficients of the best model found so far.

Parameters:
[out]model_coefficientsthe resultant model coefficients

Definition at line 184 of file sac.h.

double pcl::SampleConsensus< PointT >::getProbability ( ) [inline, inherited]

Obtain the probability of choosing at least one sample free from outliers, as set by the user.

Definition at line 146 of file sac.h.

void pcl::SampleConsensus< PointT >::getRandomSamples ( const boost::shared_ptr< std::vector< int > > &  indices,
size_t  nr_samples,
std::set< int > &  indices_subset 
) [inline, inherited]

Get a set of randomly selected indices.

Parameters:
[in]indicesthe input indices vector
[in]nr_samplesthe desired number of point indices to randomly select
[out]indices_subsetthe resultant output set of randomly selected indices

Definition at line 158 of file sac.h.

void pcl::SampleConsensus< PointT >::setDistanceThreshold ( double  threshold) [inline, inherited]

Set the distance to model threshold.

Parameters:
[in]thresholddistance to model threshold

Definition at line 121 of file sac.h.

template<typename PointT >
void pcl::RandomizedMEstimatorSampleConsensus< PointT >::setFractionNrPretest ( double  nr_pretest) [inline]

Set the percentage of points to pre-test.

Parameters:
nr_pretestpercentage of points to pre-test

Definition at line 99 of file rmsac.h.

void pcl::SampleConsensus< PointT >::setMaxIterations ( int  max_iterations) [inline, inherited]

Set the maximum number of iterations.

Parameters:
[in]max_iterationsmaximum number of iterations

Definition at line 131 of file sac.h.

void pcl::SampleConsensus< PointT >::setProbability ( double  probability) [inline, inherited]

Set the desired probability of choosing at least one sample free from outliers.

Parameters:
[in]probabilitythe desired probability of choosing at least one sample free from outliers
Note:
internally, the probability is set to 99% (0.99) by default.

Definition at line 142 of file sac.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines