Fix KalmanFilter comment error
authorChen Jun <chen.junn@outlook.com>
Wed, 27 Apr 2022 10:13:57 +0000 (18:13 +0800)
committerChen Jun <chen.junn@outlook.com>
Thu, 12 May 2022 08:48:23 +0000 (08:48 +0000)
If there will be measurement before the next predict, `statePost` would be assigned to updated value. So I guess these steps are meant to handle when no measurement and KF only do the predict step.
```cpp
statePre.copyTo(statePost);
errorCovPre.copyTo(errorCovPost);
```

modules/video/src/kalman.cpp

index f90f9f7..10e7ffb 100644 (file)
@@ -96,7 +96,7 @@ const Mat& KalmanFilter::predict(const Mat& control)
     // P'(k) = temp1*At + Q
     gemm(temp1, transitionMatrix, 1, processNoiseCov, 1, errorCovPre, GEMM_2_T);
 
-    // handle the case when there will be measurement before the next predict.
+    // handle the case when there will be no measurement before the next predict.
     statePre.copyTo(statePost);
     errorCovPre.copyTo(errorCovPost);