From e627f4e9357644f8ab90aec62b8f27c7a7afa91d Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sat, 5 Feb 2022 07:20:29 -0600 Subject: [PATCH] dont stop scanning when there are other regions --- frigate/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/video.py b/frigate/video.py index fb0b95b60..9f8231e83 100755 --- a/frigate/video.py +++ b/frigate/video.py @@ -559,7 +559,7 @@ def process_frames( ] # if starting up, get the next startup scan region - if startup_scan_counter < 9 and len(regions) == 0: + if startup_scan_counter < 9: ymin = int(frame_shape[0] / 3 * startup_scan_counter / 3) ymax = int(frame_shape[0] / 3 + ymin) xmin = int(frame_shape[1] / 3 * startup_scan_counter / 3)