diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-07-05 13:04:48 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-07-05 13:04:48 +0200 |
commit | 66c2373014fc107d918b8549d554420d63405cc7 (patch) | |
tree | fe2ae7638e3457faf85b2aeea08df2519b2a6692 /tracker-easy/tracker-easy.h | |
parent | 81da94a9582776c99d8d8a2fc024df4c4f43d88c (diff) |
tracker/easy: fix some warnings
Diffstat (limited to 'tracker-easy/tracker-easy.h')
-rw-r--r-- | tracker-easy/tracker-easy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tracker-easy/tracker-easy.h b/tracker-easy/tracker-easy.h index a0478afc..0b51f9c7 100644 --- a/tracker-easy/tracker-easy.h +++ b/tracker-easy/tracker-easy.h @@ -141,9 +141,9 @@ namespace EasyTracker std::vector<cv::Rect> iTrackedRects; // Intrinsics camera matrix - cv::Mat iCameraMatrix; + cv::Matx33d iCameraMatrix { cv::Matx33d::zeros() }; // Intrinsics distortion coefficients as a matrix - cv::Mat iDistCoeffsMatrix; + cv::Matx<double, 8, 1> iDistCoeffsMatrix; // Translation solutions std::vector<cv::Mat> iTranslations; // Rotation solutions |