Skip to content

Commit

Permalink
bump default stationary_threshold to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeblackshear committed Feb 19, 2022
1 parent 190f217 commit ee5b998
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/docs/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ detect:
# Optional: Frequency for running detection on stationary objects (default: shown below)
# When set to 0, object detection will never be run on stationary objects. If set to 10, it will be run on every 10th frame.
stationary_interval: 0
# Optional: Number of frames without a position change for an object to be considered stationary (default: 5x the frame rate)
stationary_threshold: 25
# Optional: Number of frames without a position change for an object to be considered stationary (default: 10x the frame rate or 10s)
stationary_threshold: 50

# Optional: Object configuration
# NOTE: Can be overridden at the camera level
Expand Down
2 changes: 1 addition & 1 deletion frigate/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ def runtime_config(self) -> FrigateConfig:
camera_config.detect.max_disappeared = max_disappeared

# Default stationary_threshold configuration
stationary_threshold = camera_config.detect.fps * 5
stationary_threshold = camera_config.detect.fps * 10
if camera_config.detect.stationary_threshold is None:
camera_config.detect.stationary_threshold = stationary_threshold

Expand Down

0 comments on commit ee5b998

Please sign in to comment.