fix(frigate): quote all floats in values.yaml. because questions.yaml schema fails to validate when applying empty value (#5204)
This commit is contained in:
@@ -24,7 +24,7 @@ sources:
|
|||||||
- https://github.com/blakeblackshear/frigate
|
- https://github.com/blakeblackshear/frigate
|
||||||
- https://hub.docker.com/r/blakeblackshear/frigate
|
- https://hub.docker.com/r/blakeblackshear/frigate
|
||||||
type: application
|
type: application
|
||||||
version: 5.0.8
|
version: 5.0.9
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- nvr
|
- nvr
|
||||||
|
|||||||
@@ -166,13 +166,13 @@ frigate:
|
|||||||
# # -- Optional: Maximum width*height of the bounding box for the detected object
|
# # -- Optional: Maximum width*height of the bounding box for the detected object
|
||||||
# max_area: 100000
|
# max_area: 100000
|
||||||
# # -- Optional: Minimum width/height of the bounding box for the detected object
|
# # -- Optional: Minimum width/height of the bounding box for the detected object
|
||||||
# min_ratio: 0.5
|
# min_ratio: "0.5"
|
||||||
# # -- Optional: Maximum width/height of the bounding box for the detected object
|
# # -- Optional: Maximum width/height of the bounding box for the detected object
|
||||||
# max_ratio: 2.0
|
# max_ratio: "2.0"
|
||||||
# # -- Optional: Minimum score for the object to initiate tracking
|
# # -- Optional: Minimum score for the object to initiate tracking
|
||||||
# min_score: 0.5
|
# min_score: "0.5"
|
||||||
# # -- Optional: Minimum decimal percentage for tracked object's computed score to be considered a true positive
|
# # -- Optional: Minimum decimal percentage for tracked object's computed score to be considered a true positive
|
||||||
# threshold: 0.7
|
# threshold: "0.7"
|
||||||
# # -- Optional: Mask to prevent this object type from being detected in certain areas
|
# # -- Optional: Mask to prevent this object type from being detected in certain areas
|
||||||
# # - Checks based on the bottom center of the bounding box of the object
|
# # - Checks based on the bottom center of the bounding box of the object
|
||||||
# mask: 0,0,1000,0,1000,200,0,200
|
# mask: 0,0,1000,0,1000,200,0,200
|
||||||
@@ -195,12 +195,12 @@ frigate:
|
|||||||
# -- Optional: Alpha value passed to cv2.accumulateWeighted when averaging the motion delta across multiple frames
|
# -- Optional: Alpha value passed to cv2.accumulateWeighted when averaging the motion delta across multiple frames
|
||||||
# - Higher values mean the current frame impacts the delta a lot, and a single raindrop may register as motion.
|
# - Higher values mean the current frame impacts the delta a lot, and a single raindrop may register as motion.
|
||||||
# - Too low and a fast moving person wont be detected as motion.
|
# - Too low and a fast moving person wont be detected as motion.
|
||||||
delta_alpha: 0.2
|
delta_alpha: "0.2"
|
||||||
# -- Optional: Alpha value passed to cv2.accumulateWeighted when averaging frames to determine the background
|
# -- Optional: Alpha value passed to cv2.accumulateWeighted when averaging frames to determine the background
|
||||||
# - Higher values mean the current frame impacts the average a lot, and a new object will be averaged into the background faster.
|
# - Higher values mean the current frame impacts the average a lot, and a new object will be averaged into the background faster.
|
||||||
# - Low values will cause things like moving shadows to be detected as motion for longer.
|
# - Low values will cause things like moving shadows to be detected as motion for longer.
|
||||||
# - https://www.geeksforgeeks.org/background-subtraction-in-an-image-using-concept-of-running-average/
|
# - https://www.geeksforgeeks.org/background-subtraction-in-an-image-using-concept-of-running-average/
|
||||||
frame_alpha: 0.2
|
frame_alpha: "0.2"
|
||||||
# -- Optional: Height of the resized motion frame (default: 50)
|
# -- Optional: Height of the resized motion frame (default: 50)
|
||||||
# - This operates as an efficient blur alternative. Higher values will result in more granular motion detection at the expense
|
# - This operates as an efficient blur alternative. Higher values will result in more granular motion detection at the expense
|
||||||
# - of higher CPU usage. Lower values result in less CPU, but small changes may not register as motion.
|
# - of higher CPU usage. Lower values result in less CPU, but small changes may not register as motion.
|
||||||
@@ -390,7 +390,7 @@ frigate:
|
|||||||
- object: person
|
- object: person
|
||||||
min_area: 5000
|
min_area: 5000
|
||||||
max_area: 100000
|
max_area: 100000
|
||||||
threshold: 0.7
|
threshold: "0.7"
|
||||||
# -- Optional: Configuration for the jpg snapshots published via MQTT
|
# -- Optional: Configuration for the jpg snapshots published via MQTT
|
||||||
mqtt:
|
mqtt:
|
||||||
# -- Enable it to add the configuration in the config file
|
# -- Enable it to add the configuration in the config file
|
||||||
|
|||||||
Reference in New Issue
Block a user