diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-01-20 13:50:43 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-01-23 14:16:35 +0100 |
commit | 45e48310779c8adec67de7cf76328aa7bd034466 (patch) | |
tree | 40daded34f4c190e172964f1af47dc05566b2e5d /tracker-neuralnet/ftnoir_tracker_neuralnet.h | |
parent | 7b3af1e239b51e63a5956bc13e7528ad6e776689 (diff) |
tracker/nn: try fixing center on startup
Diffstat (limited to 'tracker-neuralnet/ftnoir_tracker_neuralnet.h')
-rw-r--r-- | tracker-neuralnet/ftnoir_tracker_neuralnet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tracker-neuralnet/ftnoir_tracker_neuralnet.h b/tracker-neuralnet/ftnoir_tracker_neuralnet.h index 3548335e..df71a7a8 100644 --- a/tracker-neuralnet/ftnoir_tracker_neuralnet.h +++ b/tracker-neuralnet/ftnoir_tracker_neuralnet.h @@ -31,6 +31,7 @@ #include <memory> #include <cinttypes> #include <array> +#include <optional> #include <opencv2/core.hpp> #include <opencv2/imgproc.hpp> @@ -151,7 +152,7 @@ private: QMutex mtx_ = {}; // Protects the pose std::optional<QuatPose> last_pose_ = {}; - Affine last_pose_affine_ = {}; + std::optional<Affine> last_pose_affine_ = {}; Preview preview_; std::unique_ptr<cv_video_widget> video_widget_; |