diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-04-28 00:26:58 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-04-28 21:27:35 +0200 |
commit | 211ec8b4a813eeb89caef2e22b4b1b0b9ba3d5c4 (patch) | |
tree | f0cb59cded8f4ebebc60a36ebab1a5f178967840 | |
parent | 13ff773a47552e9dac2d57ba810e01ebcaa64b53 (diff) |
fix opencv version bump
-rw-r--r-- | tracker-pt/module/point_extractor.cpp | 2 | ||||
-rw-r--r-- | tracker-wii/wii_camera.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/tracker-pt/module/point_extractor.cpp b/tracker-pt/module/point_extractor.cpp index b67c4036..e1047b44 100644 --- a/tracker-pt/module/point_extractor.cpp +++ b/tracker-pt/module/point_extractor.cpp @@ -192,7 +192,7 @@ void PointExtractor::threshold_image(const cv::Mat& frame_gray, cv::Mat1b& outpu thres = i; } - cv::threshold(frame_gray, output, thres, 255, CV_THRESH_BINARY); + cv::threshold(frame_gray, output, thres, 255, cv::THRESH_BINARY); } } diff --git a/tracker-wii/wii_camera.cpp b/tracker-wii/wii_camera.cpp index af9a2d1f..7ec21666 100644 --- a/tracker-wii/wii_camera.cpp +++ b/tracker-wii/wii_camera.cpp @@ -21,8 +21,6 @@ #include <opencv2/imgproc.hpp> -#include "cv/video-property-page.hpp" - #include <bluetoothapis.h> using namespace pt_module; |