diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-04-14 14:26:26 +0200 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-04-24 18:46:12 +0200 |
commit | 69a16a5bb45eafe185fa708f572788908ce9ebff (patch) | |
tree | 53964e955e5ede7b6601598367c6a13dfbcfd3c3 /tracker-easy/preview.cpp | |
parent | a814bff460cff1263e236e465c7ef8c8f88baf55 (diff) |
Easy Tracker: Fixing issues with preview head point cross.
Diffstat (limited to 'tracker-easy/preview.cpp')
-rw-r--r-- | tracker-easy/preview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tracker-easy/preview.cpp b/tracker-easy/preview.cpp index 7f245ae4..a44ab143 100644 --- a/tracker-easy/preview.cpp +++ b/tracker-easy/preview.cpp @@ -109,11 +109,11 @@ namespace EasyTracker cv::line(iFrameRgb, cv::Point(px - len, py), cv::Point(px + len, py), - color, 1); + color, 2); cv::line(iFrameRgb, cv::Point(px, py - len), cv::Point(px, py + len), - color, 1); + color, 2); } void Preview::ensure_size(cv::Mat& frame, int w, int h, int type) |