summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-04-18 07:36:54 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-04-18 07:36:54 +0200
commit068064dfe6a51ea86757b4cc664f048fb16486e8 (patch)
treeaf773dcb4cf933667f4a32a08792f115012fa569 /tracker-pt
parent3c9106d7777e26326f999f048324c4854f1c16a4 (diff)
tracker/pt: make calibrated cross yellow
Otherwise it's not visible enough with red-only image.
Diffstat (limited to 'tracker-pt')
-rw-r--r--tracker-pt/ftnoir_tracker_pt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.cpp b/tracker-pt/ftnoir_tracker_pt.cpp
index e35acc0e..36eabcc9 100644
--- a/tracker-pt/ftnoir_tracker_pt.cpp
+++ b/tracker-pt/ftnoir_tracker_pt.cpp
@@ -108,7 +108,7 @@ void Tracker_PT::run()
cv::Point p2(iround(p_[0] * preview_frame.cols + preview_frame.cols/2),
iround(-p_[1] * preview_frame.cols + preview_frame.rows/2));
- static const cv::Scalar color(0, 0, 255);
+ static const cv::Scalar color(0, 255, 255);
cv::line(preview_frame,
cv::Point(p2.x - len, p2.y),
cv::Point(p2.x + len, p2.y),