diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-04-16 18:19:36 +0200 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-04-24 18:46:12 +0200 |
commit | c4d9ad64f2aa9136c353dc4b10935dfca08a1779 (patch) | |
tree | 1363c30dadbc1e74610464b64b7667eb94ff711e /tracker-easy/point-extractor.h | |
parent | be51a114bca4f3f43ed88001cdc510ccf246079f (diff) |
Easy Tracker: Moving things around and theoretical data structure usage optimization.
Diffstat (limited to 'tracker-easy/point-extractor.h')
-rw-r--r-- | tracker-easy/point-extractor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tracker-easy/point-extractor.h b/tracker-easy/point-extractor.h index 7827bb30..3c65b193 100644 --- a/tracker-easy/point-extractor.h +++ b/tracker-easy/point-extractor.h @@ -34,6 +34,9 @@ namespace EasyTracker cv::Mat iFrameChannelSizeOne; // Our frame with a single 8 bits channel cv::Mat iFrameGray; + // + std::vector<std::vector<cv::Point> > iContours; + }; } |