summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt/point_extractor.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-03-21 16:42:17 +0100
committerStanislaw Halik <sthalik@misaki.pl>2017-03-21 16:59:09 +0100
commit69137c3d2b583b30b76f3e4a103fba6b9abd97fe (patch)
treeac7d8c8e85cee0a1b41e8711da4aeaec6c5a4139 /tracker-pt/point_extractor.cpp
parent4896a8a8cdce0a6da8379b3ee167773c97fc7131 (diff)
tracker/pt: hardcode trackmouse settings
Diffstat (limited to 'tracker-pt/point_extractor.cpp')
-rw-r--r--tracker-pt/point_extractor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/point_extractor.cpp b/tracker-pt/point_extractor.cpp
index 4bd92d44..f2550f6b 100644
--- a/tracker-pt/point_extractor.cpp
+++ b/tracker-pt/point_extractor.cpp
@@ -96,7 +96,7 @@ void PointExtractor::extract_points(const cv::Mat& frame, cv::Mat& preview_frame
const double region_size_min = s.min_point_size;
const double region_size_max = s.max_point_size;
- if (!s.auto_threshold)
+ if (false)
{
const int thres = s.threshold;
cv::threshold(frame_gray, frame_bin, thres, 255, cv::THRESH_BINARY);