diff options
Diffstat (limited to 'tracker-easy/point_extractor.cpp')
-rw-r--r-- | tracker-easy/point_extractor.cpp | 2 |
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])); } |