g2o
Public Member Functions | List of all members
g2o::RobustKernelFair Class Reference

Fair cost function. More...

#include <robust_kernel_impl.h>

Inheritance diagram for g2o::RobustKernelFair:
Inheritance graph
[legend]
Collaboration diagram for g2o::RobustKernelFair:
Collaboration graph
[legend]

Public Member Functions

virtual void robustify (double e2, Vector3D &rho) const
 
- Public Member Functions inherited from g2o::RobustKernel
 RobustKernel ()
 
 RobustKernel (double delta)
 
virtual ~RobustKernel ()
 
virtual void setDelta (double delta)
 
double delta () const
 

Additional Inherited Members

- Protected Attributes inherited from g2o::RobustKernel
double _delta
 

Detailed Description

Fair cost function.

See http://research.microsoft.com/en-us/um/people/zhang/Papers/ZhangIVC-97-01.pdf

2 * d^2 [e2 / d - log (1 + e2 / d)]

Definition at line 151 of file robust_kernel_impl.h.

Member Function Documentation

void g2o::RobustKernelFair::robustify ( double  squaredError,
Vector3D rho 
) const
virtual

compute the scaling factor for a error: The error is e^T Omega e The output rho is rho[0]: The actual scaled error value rho[1]: First derivative of the scaling function rho[2]: Second derivative of the scaling function

Implements g2o::RobustKernel.

Definition at line 119 of file robust_kernel_impl.cpp.

References g2o::RobustKernel::_delta.

120 {
121  const double sqrte = sqrt(e2);
122  const double aux = sqrte / _delta;
123  rho[0] = 2. * _delta * _delta * (aux - log(1. + aux));
124  rho[1] = 1. / (1. + aux);
125  rho[2] = - 0.5 / (sqrte * (1. + aux));
126 }

The documentation for this class was generated from the following files: