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-14 14:26:26 +0200 |
commit | 56160ea9dedc086e74962f8c74a7f96d576653c3 (patch) | |
tree | 09a7a6a1af92f90e499ac31b53e132a4337f224c /tracker-easy/preview.cpp | |
parent | 3b19264b7425ecd13c5c7ab470cb3c91dd257d44 (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) |