stop forcing detection all the way to stationary_threshold

This commit is contained in:
Blake Blackshear
2022-02-20 07:46:10 -07:00
committed by Nick Mowen
parent fe906e949f
commit 35f2951d1b
+2 -2
View File
@@ -507,8 +507,8 @@ def process_frames(
stationary_object_ids = [
obj["id"]
for obj in object_tracker.tracked_objects.values()
# if there hasn't been motion for N frames
if obj["motionless_count"] >= detect_config.stationary_threshold
# if there hasn't been motion for 10 frames
if obj["motionless_count"] >= 10
# and it isn't due for a periodic check
and (
detect_config.stationary.interval == 0