From ee9a14cd11763bd8fc9be2ebf86deb86d31606e7 Mon Sep 17 00:00:00 2001 From: Stéphane Lenclud Date: Sun, 31 Mar 2019 21:39:04 +0200 Subject: Tracker now providing OpenCV data. --- tracker-points/ftnoir_tracker_pt.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tracker-points/ftnoir_tracker_pt.h') diff --git a/tracker-points/ftnoir_tracker_pt.h b/tracker-points/ftnoir_tracker_pt.h index 9b8da4ae..9388bd03 100644 --- a/tracker-points/ftnoir_tracker_pt.h +++ b/tracker-points/ftnoir_tracker_pt.h @@ -75,6 +75,19 @@ private: std::atomic point_count { 0 }; std::atomic ever_success = false; mutable QMutex center_lock, data_lock; + + // Translation solutions + std::vector iTranslations; + // Rotation solutions + std::vector iRotations; + // Angle solutions, pitch, yaw, roll, in this order + std::vector iAngles; + // The index of our best solution + int iBestSolutionIndex = -1; + // Best translation + cv::Vec3d iBestTranslation; + // Best angles + cv::Vec3d iBestAngles; }; } // ns pt_impl -- cgit v1.2.3