summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/point_extractor.cpp
diff options
context:
space:
mode:
authorStéphane Lenclud <github@lenclud.com>2019-04-12 23:42:43 +0200
committerStéphane Lenclud <github@lenclud.com>2019-04-24 18:46:12 +0200
commit3e36ce6985399c74676d46beef73a282eacf4109 (patch)
treef3604bb22670bd0496bf756f9aaa66449e6888d5 /tracker-easy/point_extractor.cpp
parent7e357fcb6c143a61c4f87ffda502f8be021674f0 (diff)
Easy Tracker: Renaming coordinates utility class.
Diffstat (limited to 'tracker-easy/point_extractor.cpp')
-rw-r--r--tracker-easy/point_extractor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-easy/point_extractor.cpp b/tracker-easy/point_extractor.cpp
index 54803d52..ecd72f70 100644
--- a/tracker-easy/point_extractor.cpp
+++ b/tracker-easy/point_extractor.cpp
@@ -372,7 +372,7 @@ end:
// note: H/W is equal to fx/fy
vec2 p;
- std::tie(p[0], p[1]) = to_screen_pos(b.pos[0], b.pos[1], W, H);
+ std::tie(p[0], p[1]) = Coordinates::to_screen_pos(b.pos[0], b.pos[1], W, H);
points.push_back(p);
imagePoints.push_back(vec2(b.pos[0], b.pos[1]));
}