summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt/point_extractor.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-12-21 13:31:39 +0100
committerStanislaw Halik <sthalik@misaki.pl>2014-12-21 13:31:39 +0100
commit9e731b1ee3e37db6c3387da89960ec7d654c8ee5 (patch)
tree1c01f24245650bbbb63f9dcffd2dec226e77c383 /ftnoir_tracker_pt/point_extractor.cpp
parentfe9bdd43b59ee5983580af14ddc0a7289ac82b8b (diff)
pt: don't visualize hyst debug info
It's confusing from user's perspective.
Diffstat (limited to 'ftnoir_tracker_pt/point_extractor.cpp')
-rw-r--r--ftnoir_tracker_pt/point_extractor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ftnoir_tracker_pt/point_extractor.cpp b/ftnoir_tracker_pt/point_extractor.cpp
index daea9fc0..e6a4a6b8 100644
--- a/ftnoir_tracker_pt/point_extractor.cpp
+++ b/ftnoir_tracker_pt/point_extractor.cpp
@@ -154,10 +154,10 @@ std::vector<Vec2f> PointExtractor::extract_points(Mat& frame)
channels.push_back(frame_gray - frame_bin);
}else{
frame_bin_copy.setTo(120, frame_bin_copy);
- frame_bin_low.setTo(90, frame_bin_low);
+ //frame_bin_low.setTo(90, frame_bin_low);
channels.push_back(frame_gray + frame_bin_copy);
- channels.push_back(frame_gray + frame_last_and_low);
- channels.push_back(frame_gray + frame_bin_low);
+ channels.push_back(frame_gray);
+ channels.push_back(frame_gray);
//channels.push_back(frame_gray + frame_bin);
}
merge(channels, frame);