Merge pull request #1652 from nghiaho12:kalman

This commit is contained in:
Roman Donchenko 2013-10-30 15:11:25 +04:00 committed by OpenCV Buildbot
commit 4bc105c40b

View File

@ -266,6 +266,7 @@ const Mat& KalmanFilter::predict(const Mat& control)
// handle the case when there will be measurement before the next predict.
statePre.copyTo(statePost);
errorCovPre.copyTo(errorCovPost);
return statePre;
}