Implement stationary car classifier to improve parked car management (#20206)

* Implement stationary car classifier to base stationary state on visual changes and not just bounding box stability

* Cleanup

* Fix mypy

* Move to new file and add config to disable if needed

* Cleanup

* Undo
This commit is contained in:
Nicolas Mowen
2025-09-25 09:18:45 -06:00
committed by GitHub
parent 9a22404015
commit 2f209b2cf4
4 changed files with 283 additions and 35 deletions

View File

@@ -287,6 +287,9 @@ detect:
max_disappeared: 25
# Optional: Configuration for stationary object tracking
stationary:
# Optional: Stationary classifier that uses visual characteristics to determine if an object
# is stationary even if the box changes enough to be considered motion (default: shown below).
classifier: True
# Optional: Frequency for confirming stationary objects (default: same as threshold)
# When set to 1, object detection will run to confirm the object still exists on every frame.
# If set to 10, object detection will run to confirm the object still exists on every 10th frame.