mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 00:03:03 +04:00
added type selection in the Kalman filter (thanks to Nghia Ho for the patch; see ticket #693)
This commit is contained in:
@@ -280,9 +280,9 @@ public:
|
||||
//! the default constructor
|
||||
CV_WRAP KalmanFilter();
|
||||
//! the full constructor taking the dimensionality of the state, of the measurement and of the control vector
|
||||
CV_WRAP KalmanFilter(int dynamParams, int measureParams, int controlParams=0);
|
||||
CV_WRAP KalmanFilter(int dynamParams, int measureParams, int controlParams=0, int type=CV_32F);
|
||||
//! re-initializes Kalman filter. The previous content is destroyed.
|
||||
void init(int dynamParams, int measureParams, int controlParams=0);
|
||||
void init(int dynamParams, int measureParams, int controlParams=0, int type=CV_32F);
|
||||
|
||||
//! computes predicted state
|
||||
CV_WRAP const Mat& predict(const Mat& control=Mat());
|
||||
|
||||
Reference in New Issue
Block a user