An error minimizer will compute a transformation matrix such as to minimize the error between the reading and the reference.
More...
|
| ErrorMinimizer () |
| Construct without parameter.
|
|
| ErrorMinimizer (const std::string &className, const ParametersDoc paramsDoc, const Parameters ¶ms) |
| Construct with parameters.
|
|
virtual | ~ErrorMinimizer () |
| virtual destructor
|
|
T | getPointUsedRatio () const |
| Return the ratio of how many points were used for error minimization.
|
|
T | getWeightedPointUsedRatio () const |
| Return the ratio of how many points were used (with weight) for error minimization.
|
|
ErrorElements | getErrorElements () const |
| Return the last the ErrorElements structure that was used for error minimization.
|
|
virtual T | getOverlap () const |
| If not redefined by child class, return the ratio of how many points were used (with weight) for error minimization.
|
|
virtual Matrix | getCovariance () const |
| If not redefined by child class, return zero matrix.
|
|
virtual T | getResidualError (const DataPoints &filteredReading, const DataPoints &filteredReference, const OutlierWeights &outlierWeights, const Matches &matches) const |
| If not redefined by child class, return max value for T.
|
|
virtual TransformationParameters | compute (const DataPoints &filteredReading, const DataPoints &filteredReference, const OutlierWeights &outlierWeights, const Matches &matches) |
| Find the transformation that minimizes the error.
|
|
virtual TransformationParameters | compute (const ErrorElements &matchedPoints)=0 |
| Find the transformation that minimizes the error given matched pair of points. This function most be defined for all new instances of ErrorMinimizer.
|
|
| Parametrizable () |
| Construct a documentation of parameters from a description in the source. More...
|
|
| Parametrizable (const std::string &className, const ParametersDoc paramsDoc, const Parameters ¶ms) |
| Construct with documented parameters.
|
|
virtual | ~Parametrizable () |
| Virtual destructor, do nothing.
|
|
std::string | getParamValueString (const std::string ¶mName) |
| Get the value of a parameter, as a string.
|
|
template<typename S > |
S | get (const std::string ¶mName) |
| Return the value of paramName, lexically-casted to S.
|
|
template<typename T>
struct PointMatcher< T >::ErrorMinimizer
An error minimizer will compute a transformation matrix such as to minimize the error between the reading and the reference.
Typical error minimized are point-to-point and point-to-plane.