From 8e34490178d6078450446f005bca050c4cdfe855 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 5 Feb 2024 15:28:17 -0700 Subject: [PATCH] Make default region multiplier consistent --- frigate/util/object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/util/object.py b/frigate/util/object.py index 0bf7ea179..862ee3fe2 100644 --- a/frigate/util/object.py +++ b/frigate/util/object.py @@ -414,7 +414,7 @@ def get_cluster_region(frame_shape, min_region, cluster, boxes): max_x = max(boxes[b][2], max_x) max_y = max(boxes[b][3], max_y) return calculate_region( - frame_shape, min_x, min_y, max_x, max_y, min_region, multiplier=1.2 + frame_shape, min_x, min_y, max_x, max_y, min_region, multiplier=1.35 )