From 4af0298b4844727e87964697357af088b63921d1 Mon Sep 17 00:00:00 2001
From: Stéphane Lenclud <github@lenclud.com>
Date: Sat, 13 Apr 2019 12:24:17 +0200
Subject: Easy Tracker: Deleting legacy point extractor. Various clean-up. Head
 center preview now working.

---
 tracker-easy/tracker-easy-api.cpp | 29 ++---------------------------
 1 file changed, 2 insertions(+), 27 deletions(-)

(limited to 'tracker-easy/tracker-easy-api.cpp')

diff --git a/tracker-easy/tracker-easy-api.cpp b/tracker-easy/tracker-easy-api.cpp
index aaeb0631..2e3988a8 100644
--- a/tracker-easy/tracker-easy-api.cpp
+++ b/tracker-easy/tracker-easy-api.cpp
@@ -4,32 +4,7 @@
 using namespace numeric_types;
 
 
+IEasyTrackerTraits::IEasyTrackerTraits() = default;
+IEasyTrackerTraits::~IEasyTrackerTraits() = default;
 
-pt_runtime_traits::pt_runtime_traits() = default;
-pt_runtime_traits::~pt_runtime_traits() = default;
-pt_point_extractor::pt_point_extractor() = default;
-pt_point_extractor::~pt_point_extractor() = default;
-
-f pt_point_extractor::threshold_radius_value(int w, int h, int threshold)
-{
-    f cx = w / f{640}, cy = h / f{480};
-
-    const f min_radius = f{1.75} * cx;
-    const f max_radius = f{15} * cy;
-
-    const f radius = std::fmax(f{0}, (max_radius-min_radius) * threshold / f(255) + min_radius);
-
-    return radius;
-}
-
-std::tuple<f, f> Coordinates::to_pixel_pos(f x, f y, int w, int h)
-{
-    return std::make_tuple(w*(x+f{.5}), f{.5}*(h - 2*y*w));
-}
-
-std::tuple<f, f> Coordinates::to_screen_pos(f px, f py, int w, int h)
-{
-    px *= w/(w-f{1}); py *= h/(h-f{1});
-    return std::make_tuple((px - w/f{2})/w, -(py - h/f{2})/w);
-}
 
-- 
cgit v1.2.3