LeastMedianSquares represents an implementation of the LMedS (Least Median of Squares) algorithm.
More...
#include <pcl/sample_consensus/lmeds.h>
List of all members.
Public Types |
typedef boost::shared_ptr
< SampleConsensus > | Ptr |
typedef boost::shared_ptr
< const SampleConsensus > | ConstPtr |
Public Member Functions |
| | LeastMedianSquares (const SampleConsensusModelPtr &model) |
| | LMedS (Least Median of Squares) main constructor.
|
| | LeastMedianSquares (const SampleConsensusModelPtr &model, double threshold) |
| | LMedS (Least Median of Squares) main constructor.
|
| bool | computeModel (int debug_verbosity_level=0) |
| | Compute the actual model and find the inliers.
|
| 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::LeastMedianSquares< PointT >
LeastMedianSquares represents an implementation of the LMedS (Least Median of Squares) algorithm.
LMedS is a RANSAC-like model-fitting algorithm that can tolerate up to 50% outliers without requiring thresholds to be set. See Andrea Fusiello's "Elements of Geometric Computer Vision" (http://homepages.inf.ed.ac.uk/rbf/CVonline/LOCAL_COPIES/FUSIELLO4/tutorial.html#x1-520007) for more details.
- Author:
- Radu Bogdan Rusu
Definition at line 55 of file lmeds.h.
Member Typedef Documentation
Definition at line 65 of file sac.h.
Definition at line 61 of file sac.h.
Constructor & Destructor Documentation
template<typename PointT >
LMedS (Least Median of Squares) main constructor.
- Parameters:
-
| model | a Sample Consensus model |
Definition at line 71 of file lmeds.h.
template<typename PointT >
LMedS (Least Median of Squares) main constructor.
- Parameters:
-
| model | a Sample Consensus model |
| threshold | distance to model threshold |
Definition at line 81 of file lmeds.h.
Member Function Documentation
template<typename PointT >
Compute the actual model and find the inliers.
- Parameters:
-
| debug_verbosity_level | enable/disable on-screen debug information and set the verbosity level |
Implements pcl::SampleConsensus< PointT >.
Definition at line 45 of file lmeds.hpp.
Get the distance to model threshold, as set by the user.
Definition at line 125 of file sac.h.
Return the best set of inliers found so far for this model.
- Parameters:
-
| [out] | inliers | the resultant set of inliers |
Definition at line 178 of file sac.h.
Get the maximum number of iterations, as set by the user.
Definition at line 135 of file sac.h.
Return the best model found so far.
- Parameters:
-
| [out] | model | the resultant model |
Definition at line 172 of file sac.h.
Return the model coefficients of the best model found so far.
- Parameters:
-
| [out] | model_coefficients | the resultant model coefficients |
Definition at line 184 of file sac.h.
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.
Get a set of randomly selected indices.
- Parameters:
-
| [in] | indices | the input indices vector |
| [in] | nr_samples | the desired number of point indices to randomly select |
| [out] | indices_subset | the resultant output set of randomly selected indices |
Definition at line 158 of file sac.h.
Set the distance to model threshold.
- Parameters:
-
| [in] | threshold | distance to model threshold |
Definition at line 121 of file sac.h.
Set the maximum number of iterations.
- Parameters:
-
| [in] | max_iterations | maximum number of iterations |
Definition at line 131 of file sac.h.
Set the desired probability of choosing at least one sample free from outliers.
- Parameters:
-
| [in] | probability | the 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:
- /usr/src/RPM/BUILD/PCL-1.6.0-Source/sample_consensus/include/pcl/sample_consensus/lmeds.h
- /usr/src/RPM/BUILD/PCL-1.6.0-Source/sample_consensus/include/pcl/sample_consensus/impl/lmeds.hpp