mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
wording changes
This commit is contained in:
parent
de2a456a14
commit
44f7c9c799
@ -177,7 +177,7 @@ class CameraConfig(FrigateBaseModel):
|
||||
ui: CameraUiConfig = Field(
|
||||
default_factory=CameraUiConfig,
|
||||
title="Camera UI",
|
||||
description="Display ordering and dashboard visibility for this camera in the UI.",
|
||||
description="Display ordering and visibility for this camera in the UI. Ordering affects the default dashboard. For more granular control, use camera groups.",
|
||||
)
|
||||
webui_url: Optional[str] = Field(
|
||||
None,
|
||||
|
||||
@ -33,7 +33,7 @@ class FilterConfig(FrigateBaseModel):
|
||||
)
|
||||
threshold: float = Field(
|
||||
default=0.7,
|
||||
title="Avg confidence",
|
||||
title="Confidence threshold",
|
||||
description="Average detection confidence threshold required for the object to be considered a true positive.",
|
||||
)
|
||||
min_score: float = Field(
|
||||
|
||||
@ -6,18 +6,13 @@ __all__ = ["CameraUiConfig"]
|
||||
|
||||
|
||||
class CameraUiConfig(FrigateBaseModel):
|
||||
"""Camera UI
|
||||
|
||||
Display ordering and dashboard visibility for this camera in the UI.
|
||||
"""
|
||||
|
||||
order: int = Field(
|
||||
default=0,
|
||||
title="UI order",
|
||||
description="Numeric order used to sort the camera in the UI; larger numbers appear later.",
|
||||
description="Numeric order used to sort the camera in the UI (default dashboard and lists); larger numbers appear later.",
|
||||
)
|
||||
dashboard: bool = Field(
|
||||
default=True,
|
||||
title="Show in dashboard",
|
||||
description="Toggle whether this camera is visible in the main dashboard.",
|
||||
title="Show in UI",
|
||||
description="Toggle whether this camera is visible everywhere in the Frigate UI. Disabling this will require manually editing the config to view this camera in the UI again.",
|
||||
)
|
||||
|
||||
@ -329,7 +329,7 @@
|
||||
"description": "Maximum width/height ratio allowed for the bounding box to qualify."
|
||||
},
|
||||
"threshold": {
|
||||
"label": "Avg confidence",
|
||||
"label": "Confidence threshold",
|
||||
"description": "Average detection confidence threshold required for the object to be considered a true positive."
|
||||
},
|
||||
"min_score": {
|
||||
@ -839,14 +839,14 @@
|
||||
},
|
||||
"ui": {
|
||||
"label": "Camera UI",
|
||||
"description": "Display ordering and dashboard visibility for this camera in the UI.",
|
||||
"description": "Display ordering and visibility for this camera in the UI. Ordering affects the default dashboard. For more granular control, use camera groups.",
|
||||
"order": {
|
||||
"label": "UI order",
|
||||
"description": "Numeric order used to sort the camera in the UI; larger numbers appear later."
|
||||
"description": "Numeric order used to sort the camera in the UI (default dashboard and lists); larger numbers appear later."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Show in dashboard",
|
||||
"description": "Toggle whether this camera is visible in the main dashboard."
|
||||
"label": "Show in UI",
|
||||
"description": "Toggle whether this camera is visible everywhere in the Frigate UI. Disabling this will require manually editing the config to view this camera in the UI again."
|
||||
}
|
||||
},
|
||||
"webui_url": {
|
||||
@ -880,7 +880,7 @@
|
||||
"description": "Maximum width/height ratio allowed for the bounding box to qualify."
|
||||
},
|
||||
"threshold": {
|
||||
"label": "Avg confidence",
|
||||
"label": "Confidence threshold",
|
||||
"description": "Average detection confidence threshold required for the object to be considered a true positive."
|
||||
},
|
||||
"min_score": {
|
||||
|
||||
@ -716,7 +716,7 @@
|
||||
"description": "Maximum width/height ratio allowed for the bounding box to qualify."
|
||||
},
|
||||
"threshold": {
|
||||
"label": "Avg confidence",
|
||||
"label": "Confidence threshold",
|
||||
"description": "Average detection confidence threshold required for the object to be considered a true positive."
|
||||
},
|
||||
"min_score": {
|
||||
@ -1360,14 +1360,14 @@
|
||||
},
|
||||
"camera_ui": {
|
||||
"label": "Camera UI",
|
||||
"description": "Display ordering and dashboard visibility for this camera in the UI.",
|
||||
"description": "Display ordering and visibility for this camera in the UI. Ordering affects the default dashboard. For more granular control, use camera groups.",
|
||||
"order": {
|
||||
"label": "UI order",
|
||||
"description": "Numeric order used to sort the camera in the UI; larger numbers appear later."
|
||||
"description": "Numeric order used to sort the camera in the UI (default dashboard and lists); larger numbers appear later."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Show in dashboard",
|
||||
"description": "Toggle whether this camera is visible in the main dashboard."
|
||||
"label": "Show in UI",
|
||||
"description": "Toggle whether this camera is visible everywhere in the Frigate UI. Disabling this will require manually editing the config to view this camera in the UI again."
|
||||
}
|
||||
},
|
||||
"onvif": {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user