diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-07-31 13:48:09 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-07-31 13:48:09 +0200 |
commit | fa528a7ebafc9b5751deda05c02aec43a9a45ead (patch) | |
tree | e23a0e74592670b23c5df3c6b58895255aaad581 /tracker-pt | |
parent | ccafc5f054733e883bb0ef8b0c698b4c9c86fff9 (diff) |
tracker/{aruco, pt}, compat, api: move opencv camera class to cv module
Diffstat (limited to 'tracker-pt')
-rw-r--r-- | tracker-pt/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt.h | 2 | ||||
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt_dialog.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tracker-pt/CMakeLists.txt b/tracker-pt/CMakeLists.txt index f646dd8b..b2539a74 100644 --- a/tracker-pt/CMakeLists.txt +++ b/tracker-pt/CMakeLists.txt @@ -1,6 +1,6 @@ find_package(OpenCV 3.0 QUIET) if(OpenCV_FOUND) opentrack_boilerplate(opentrack-tracker-pt) - target_link_libraries(opentrack-tracker-pt ${OpenCV_LIBS}) + target_link_libraries(opentrack-tracker-pt opentrack-cv ${OpenCV_LIBS}) target_include_directories(opentrack-tracker-pt SYSTEM PUBLIC ${OpenCV_INCLUDE_DIRS}) endif() diff --git a/tracker-pt/ftnoir_tracker_pt.h b/tracker-pt/ftnoir_tracker_pt.h index b5e11157..393f8e76 100644 --- a/tracker-pt/ftnoir_tracker_pt.h +++ b/tracker-pt/ftnoir_tracker_pt.h @@ -16,7 +16,7 @@ #include "point_tracker.h" #include "pt_video_widget.h" #include "opentrack-compat/timer.hpp" -#include "opentrack/opencv-camera-dialog.hpp" +#include "cv/camera-dialog.hpp" #include "opentrack-compat/pi-constant.hpp" #include <QThread> diff --git a/tracker-pt/ftnoir_tracker_pt_dialog.h b/tracker-pt/ftnoir_tracker_pt_dialog.h index b992e98d..87501b28 100644 --- a/tracker-pt/ftnoir_tracker_pt_dialog.h +++ b/tracker-pt/ftnoir_tracker_pt_dialog.h @@ -14,7 +14,7 @@ #include "trans_calib.h" #include "pt_video_widget.h" #include "ui_FTNoIR_PT_Controls.h" -#include "opentrack/opencv-camera-dialog.hpp" +#include "cv/camera-dialog.hpp" #include <QTimer> |