diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-04-15 12:22:05 +0200 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-04-24 18:46:12 +0200 |
commit | 6ca96478ea4d8e6ba71ebf41a1f7d904f2c3df5d (patch) | |
tree | 85810bc2463bb5786817830cab89cd19c9241325 /tracker-easy/preview.h | |
parent | 9830011866f0817d08c3e3f0bd26e98e54c523e7 (diff) |
Easy Tracker: Removing point extractor interface. Using cv::Point instead of vec2.
Diffstat (limited to 'tracker-easy/preview.h')
-rw-r--r-- | tracker-easy/preview.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tracker-easy/preview.h b/tracker-easy/preview.h index 785d76d4..979d272b 100644 --- a/tracker-easy/preview.h +++ b/tracker-easy/preview.h @@ -9,8 +9,6 @@ #pragma once -#include "tracker-easy-api.h" - #include <opencv2/core.hpp> #include <QImage> @@ -23,7 +21,7 @@ namespace EasyTracker Preview& operator=(const cv::Mat& frame); QImage get_bitmap(); - void draw_head_center(numeric_types::f x, numeric_types::f y); + void DrawCross(cv::Point aPoint); operator cv::Mat&() { return iFrameResized; } operator cv::Mat const&() const { return iFrameResized; } |