summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/cv-point-extractor.h
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-easy/cv-point-extractor.h')
-rw-r--r--tracker-easy/cv-point-extractor.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/tracker-easy/cv-point-extractor.h b/tracker-easy/cv-point-extractor.h
index 18229d4a..677be292 100644
--- a/tracker-easy/cv-point-extractor.h
+++ b/tracker-easy/cv-point-extractor.h
@@ -27,10 +27,14 @@ namespace EasyTracker
public:
// extracts points from frame and draws some processing info into frame, if draw_output is set
// dt: time since last call in seconds
- void extract_points(const cv::Mat& frame, cv::Mat* aPreview, std::vector<vec2>& aPoints) override;
+ void extract_points(const cv::Mat& aFrame, cv::Mat* aPreview, std::vector<vec2>& aPoints) override;
CvPointExtractor();
-
+ // Settings
pt_settings s;
+ // Our frame with a channel size of 8 bits
+ cv::Mat iFrameChannelSizeOne;
+ // Our frame with a single 8 bits channel
+ cv::Mat iFrameGray;
};
}