From fe906e949fd92426ffa523292b54038613885ace Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Fri, 11 Feb 2022 07:12:51 -0600 Subject: [PATCH] set stationary_threshold default to 5x fps --- frigate/config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index 67ba468be..7f1a79cdc 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -200,7 +200,6 @@ class DetectConfig(FrigateBaseModel): title="Stationary objects config.", ) stationary_threshold: Optional[int] = Field( - default=10, title="Number of frames without a position change for an object to be considered stationary", ge=1, )