diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-04-04 18:27:36 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-04-04 18:27:36 +0200 |
commit | c36e937fb18ff089b2d0411f440897a4a9082f84 (patch) | |
tree | 3f441e6946ed7170dd60f8fbe54cd92116247f26 | |
parent | f8d744aca02739c5fad8001e5b204a9f471d5eaa (diff) |
Fix build
-rw-r--r-- | ftnoir_filter_kalman/kalman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftnoir_filter_kalman/kalman.cpp b/ftnoir_filter_kalman/kalman.cpp index 92c3fc27..f67b9d99 100644 --- a/ftnoir_filter_kalman/kalman.cpp +++ b/ftnoir_filter_kalman/kalman.cpp @@ -46,7 +46,7 @@ FTNoIR_Filter::FTNoIR_Filter() { void FTNoIR_Filter::Initialize() { kalman.init(12, 6, 0, CV_64F); double accel_variance = 1e-2; - kalman.transitionMatrix = *(cv::Mat_<double>(12, 12) << + kalman.transitionMatrix = (cv::Mat_<double>(12, 12) << 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, |