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 /tracker-pt/module/point_extractor.cpp | |
parent | 13ff773a47552e9dac2d57ba810e01ebcaa64b53 (diff) |
fix opencv version bump
Diffstat (limited to 'tracker-pt/module/point_extractor.cpp')
-rw-r--r-- | tracker-pt/module/point_extractor.cpp | 2 |
1 files changed, 1 insertions, 1 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); } } |