diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-02-17 04:42:56 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-02-17 04:42:56 +0100 |
commit | 1a6b611b2fa64cc730f8f8ea7a716d6b5af1461e (patch) | |
tree | 904e2110204bc37501a1ac48a6ff1d3218479a72 /tracker-pt | |
parent | bf4e8b10ad916b6451dc32b9be2b86d42452e7e8 (diff) |
tracker/pt: fix build
Diffstat (limited to 'tracker-pt')
-rw-r--r-- | tracker-pt/point_extractor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/point_extractor.h b/tracker-pt/point_extractor.h index 479b6844..ab51762d 100644 --- a/tracker-pt/point_extractor.h +++ b/tracker-pt/point_extractor.h @@ -22,7 +22,7 @@ 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); - int get_n_points() const { QMutexLocker l(&mtx); return points.size(); } + int get_n_points() { QMutexLocker l(&mtx); return points.size(); } PointExtractor(); settings_pt s; |