From 540d66af57c8d6dc28df92418dbade9fe45b3e02 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 21 Aug 2024 19:10:12 -0600 Subject: [PATCH] Update reference config to include motion enabled field (#13255) --- docs/docs/configuration/reference.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/docs/configuration/reference.md b/docs/docs/configuration/reference.md index 2cbbc4903..2be78aacc 100644 --- a/docs/docs/configuration/reference.md +++ b/docs/docs/configuration/reference.md @@ -335,6 +335,11 @@ review: # Optional: Motion configuration # NOTE: Can be overridden at the camera level motion: + # Optional: enables detection for the camera (default: True) + # NOTE: Motion detection is required for object detection, + # setting this to False and leaving detect enabled + # will result in an error on startup. + enabled: False # Optional: The threshold passed to cv2.threshold to determine if a pixel is different enough to be counted as motion. (default: shown below) # Increasing this value will make motion detection less sensitive and decreasing it will make motion detection more sensitive. # The value should be between 1 and 255.