38 #ifndef OPENGV_SAC_RANSAC_HPP_ 39 #define OPENGV_SAC_RANSAC_HPP_ 59 template<
typename PROBLEM_T>
66 typedef typename problem_t::model_t
model_t;
81 int maxIterations = 1000,
82 double threshold = 1.0,
83 double probability = 0.99 );
98 #include "implementation/Ransac.hpp" Definition: Ransac.hpp:60
The namespace of this library.
Definition: AbsoluteAdapterBase.hpp:47
Ransac(int maxIterations=1000, double threshold=1.0, double probability=0.99)
Constructor.
problem_t::model_t model_t
Definition: Ransac.hpp:66
virtual ~Ransac()
Destructor.
Definition: SampleConsensus.hpp:61
This is a base class for sample consensus methods such as Ransac. Derivatives call the three basic fu...
bool computeModel(int debug_verbosity_level=0)
Fit the model.
PROBLEM_T problem_t
Definition: Ransac.hpp:64