diff options
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 |