diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-12-15 21:51:54 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-12-15 21:51:54 +0100 |
commit | 5d0ef7070a6338262f22397d6f492e6ddc6c4dbf (patch) | |
tree | 799e9a7e1c467df8d0d68db76df0858139b2e7cb /ftnoir_tracker_pt/point_extractor.h | |
parent | 0383bd9685bce8528c7ae7bd42762037552b6803 (diff) |
pt: visualize model center as another point
Diffstat (limited to 'ftnoir_tracker_pt/point_extractor.h')
-rw-r--r-- | ftnoir_tracker_pt/point_extractor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftnoir_tracker_pt/point_extractor.h b/ftnoir_tracker_pt/point_extractor.h index 2cac29a9..06d148d6 100644 --- a/ftnoir_tracker_pt/point_extractor.h +++ b/ftnoir_tracker_pt/point_extractor.h @@ -21,7 +21,7 @@ public: // extracts points from frame and draws some processing info into frame, if draw_output is set // 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); + std::vector<cv::Vec2f> extract_points(cv::Mat &frame); const std::vector<cv::Vec2f>& get_points() { return points; } PointExtractor(); |