NimbRo ROS Soccer Package
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Kalman.hpp
1 #pragma once
2 #include "opencv2/opencv.hpp"
3 #include <opencv/cv.h>
4 using namespace cv;
5 using namespace std;
12 {
13 public:
14  KalmanFilter* kalman;
15  KalmanFilterC(Point2f p);
16  ~KalmanFilterC();
17  Point2f GetPrediction();
18  Point2f Update(Point2f p);
19 };
20 
A class for Kalman filter.
Definition: Kalman.hpp:11