odometry
Gaussian2D.hpp
Go to the documentation of this file.
1 #ifndef __ODOMETRY_GAUSSIAN2D_HPP__
2 #define __ODOMETRY_GAUSSIAN2D_HPP__
3 
4 #include <Eigen/Core>
5 #include <base/Pose.hpp>
6 
7 namespace odometry
8 {
9  class Gaussian2D
10  {
11  public:
12  virtual base::Pose2D getPoseDelta2D() = 0;
13  virtual Eigen::Matrix2d getPositionError2D() = 0;
14  virtual double getOrientationError2D() = 0;
15  };
16 }
17 
18 #endif
19 
virtual base::Pose2D getPoseDelta2D()=0
virtual double getOrientationError2D()=0
Definition: Gaussian2D.hpp:9
virtual Eigen::Matrix2d getPositionError2D()=0
Definition: BodyState.cpp:5