summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tracker-pt/pt-api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/pt-api.cpp b/tracker-pt/pt-api.cpp
index 2e83d466..d71c6e13 100644
--- a/tracker-pt/pt-api.cpp
+++ b/tracker-pt/pt-api.cpp
@@ -31,7 +31,7 @@ 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 max_radius = f{30} * cy;
const f radius = std::fmax(f{0}, (max_radius-min_radius) * threshold / f(255) + min_radius);