diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-02-17 04:42:20 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-02-17 04:42:20 +0100 |
commit | bf4e8b10ad916b6451dc32b9be2b86d42452e7e8 (patch) | |
tree | 2e5da3493aaf1345036d00574e1b2ed17b3b44d3 /tracker-pt/point_extractor.h | |
parent | 38306b389951c69d050e3e4b929b442b5bd0ada5 (diff) |
tracker/pt: retire get_points() in the extractor
Diffstat (limited to 'tracker-pt/point_extractor.h')
-rw-r--r-- | tracker-pt/point_extractor.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tracker-pt/point_extractor.h b/tracker-pt/point_extractor.h index 8bcc2437..479b6844 100644 --- a/tracker-pt/point_extractor.h +++ b/tracker-pt/point_extractor.h @@ -22,7 +22,6 @@ public: // dt: time since last call in seconds // WARNING: returned reference is valid as long as object const std::vector<cv::Vec2f> &extract_points(cv::Mat &frame); - const std::vector<cv::Vec2f>& get_points() { QMutexLocker l(&mtx); return points; } int get_n_points() const { QMutexLocker l(&mtx); return points.size(); } PointExtractor(); |