mirror of
https://github.com/opencv/opencv.git
synced 2026-07-26 22:03:04 +04:00
8d0dae4cec
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); ```