diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-19 12:11:11 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-19 12:11:11 +0200 |
commit | c1d890fcf3056cd0e45a83130055456d492d723a (patch) | |
tree | 24db9e6d42d352f645b4b69c99a48b551cabd3d1 /tracker-aruco/ftnoir_tracker_aruco.h | |
parent | 204354a81b04bd9b4c0aa73ed36d50511acff541 (diff) |
tracker/{pt,aruco}: simplify
Diffstat (limited to 'tracker-aruco/ftnoir_tracker_aruco.h')
-rw-r--r-- | tracker-aruco/ftnoir_tracker_aruco.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tracker-aruco/ftnoir_tracker_aruco.h b/tracker-aruco/ftnoir_tracker_aruco.h index 4b3bde73..fd42d722 100644 --- a/tracker-aruco/ftnoir_tracker_aruco.h +++ b/tracker-aruco/ftnoir_tracker_aruco.h @@ -23,6 +23,7 @@ #include <QDialog> #include <QTimer> +#include <memory> #include <cinttypes> #include <opencv2/core.hpp> @@ -97,8 +98,8 @@ private: cv::VideoCapture camera; QMutex camera_mtx; QMutex mtx; - qshared<cv_video_widget> videoWidget; - qshared<QHBoxLayout> layout; + std::unique_ptr<cv_video_widget> videoWidget; + std::unique_ptr<QHBoxLayout> layout; settings s; double pose[6], fps, no_detection_timeout; cv::Mat frame, grayscale, color; |