20 #ifndef KALMANFILTERPLUS_HPP 21 #define KALMANFILTERPLUS_HPP 23 #include <opencv2/video/tracking.hpp> 25 #include <opencv2/core.hpp> 38 int controlParams = 0,
int type = CV_32F);
42 const cv::Mat&
predict(
const cv::Mat& control = cv::Mat());
44 void setAlphaSq(
double value);
47 #endif // KALMANFILTERPLUS_HPP const cv::Mat & predict(const cv::Mat &control=cv::Mat())
Predict the location of the ball.
Definition: KalmanFilterPlus.cpp:40
A cv::KalmanFilter which also supports some 'forgetful' functionality.
Definition: KalmanFilterPlus.hpp:30