summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-02-17 04:42:20 +0100
committerStanislaw Halik <sthalik@misaki.pl>2016-02-17 04:42:20 +0100
commitbf4e8b10ad916b6451dc32b9be2b86d42452e7e8 (patch)
tree2e5da3493aaf1345036d00574e1b2ed17b3b44d3
parent38306b389951c69d050e3e4b929b442b5bd0ada5 (diff)
tracker/pt: retire get_points() in the extractor
-rw-r--r--tracker-pt/point_extractor.h1
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();