From aa881fb8a523f4cee29955e5ae64c1334a9a3b5f Mon Sep 17 00:00:00 2001 From: Johan Walles Date: Sat, 15 Jan 2022 19:17:09 +0100 Subject: [PATCH] Tighten the overlaps criteria I think the previous one found too manu duplicates. --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 7833ed3..fb7bf14 100644 --- a/__init__.py +++ b/__init__.py @@ -45,7 +45,7 @@ # If two points are further apart than this many percent of the image dimensions # they are not dups (at least not in this frame). -DUP_MAXDIST_PERCENT = 1.0 +DUP_MAXDIST_PERCENT = 0.5 @dataclass