diff options
Diffstat (limited to 'tracker-easy/point-extractor.h')
-rw-r--r-- | tracker-easy/point-extractor.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tracker-easy/point-extractor.h b/tracker-easy/point-extractor.h index 3c65b193..b037eed6 100644 --- a/tracker-easy/point-extractor.h +++ b/tracker-easy/point-extractor.h @@ -17,16 +17,13 @@ namespace EasyTracker { - - const int KPointCount = 3; - class PointExtractor { public: PointExtractor(); // extracts points from frame and draws some processing info into frame, if draw_output is set // dt: time since last call in seconds - void ExtractPoints(const cv::Mat& aFrame, cv::Mat* aPreview, std::vector<cv::Point>& aPoints); + void ExtractPoints(const cv::Mat& aFrame, cv::Mat* aPreview, int aNeededPointCount, std::vector<cv::Point>& aPoints); // Settings Settings s; |