summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt/point_extractor.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-07-24 07:25:27 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-07-24 09:20:19 +0200
commit5f7703409b9ea6ded850e4f5382a4ca2983a8a6f (patch)
tree33cdd385c2e26e0b90d17ff3dad848a4430f800e /ftnoir_tracker_pt/point_extractor.cpp
parenta2682c3265c4f891e7baf740c08d19e01cd6d8d8 (diff)
Revert "pt: change point internal representation"
This reverts commit e89c2b1034692eb1365715a089b7035e6d837719. Issue: #199
Diffstat (limited to 'ftnoir_tracker_pt/point_extractor.cpp')
-rw-r--r--ftnoir_tracker_pt/point_extractor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ftnoir_tracker_pt/point_extractor.cpp b/ftnoir_tracker_pt/point_extractor.cpp
index cc9dbce1..e81e3aa0 100644
--- a/ftnoir_tracker_pt/point_extractor.cpp
+++ b/ftnoir_tracker_pt/point_extractor.cpp
@@ -211,7 +211,8 @@ std::vector<Vec2f> PointExtractor::extract_points(Mat& frame)
for (auto& b : simple_blob::merge(blobs))
{
auto pos = b.effective_pos();
- points.push_back(pos);
+ Vec2f p((pos[0] - W/2)/W, -(pos[1] - H/2)/W);
+ points.push_back(p);
}
vector<Mat> channels_;