mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-19 22:58:22 +03:00
61 lines
2.6 KiB
JSON
61 lines
2.6 KiB
JSON
{
|
|
"label": "Object Detection",
|
|
"description": "Settings for the detection/detect role used to run object detection and initialize trackers.",
|
|
"enabled": {
|
|
"label": "Detection enabled",
|
|
"description": "Enable or disable object detection for this camera. Detection must be enabled for object tracking to run."
|
|
},
|
|
"height": {
|
|
"label": "Detect height",
|
|
"description": "Height (pixels) of frames used for the detect stream; leave empty to use the native stream resolution."
|
|
},
|
|
"width": {
|
|
"label": "Detect width",
|
|
"description": "Width (pixels) of frames used for the detect stream; leave empty to use the native stream resolution."
|
|
},
|
|
"fps": {
|
|
"label": "Detect FPS",
|
|
"description": "Desired frames per second to run detection on; lower values reduce CPU usage (recommended value is 5, only set higher - at most 10 - if tracking extremely fast moving objects)."
|
|
},
|
|
"min_initialized": {
|
|
"label": "Min initialization hits",
|
|
"description": "Number of consecutive detection hits required before creating a tracked object. Increase to reduce false initializations. Default value is fps divided by 2."
|
|
},
|
|
"max_disappeared": {
|
|
"label": "Max disappeared frames",
|
|
"description": "Number of frames without a detection before a tracked object is considered gone."
|
|
},
|
|
"stationary": {
|
|
"label": "Stationary objects config",
|
|
"description": "Settings to detect and manage objects that remain stationary for a period of time.",
|
|
"interval": {
|
|
"label": "Stationary interval",
|
|
"description": "How often (in frames) to run a detection check to confirm a stationary object."
|
|
},
|
|
"threshold": {
|
|
"label": "Stationary threshold",
|
|
"description": "Number of frames with no position change required to mark an object as stationary."
|
|
},
|
|
"max_frames": {
|
|
"label": "Max frames",
|
|
"description": "Limits how long stationary objects are tracked before being discarded.",
|
|
"default": {
|
|
"label": "Default max frames",
|
|
"description": "Default maximum frames to track a stationary object before stopping."
|
|
},
|
|
"objects": {
|
|
"label": "Object max frames",
|
|
"description": "Per-object overrides for maximum frames to track stationary objects."
|
|
}
|
|
},
|
|
"classifier": {
|
|
"label": "Enable visual classifier",
|
|
"description": "Use a visual classifier to detect truly stationary objects even when bounding boxes jitter."
|
|
}
|
|
},
|
|
"annotation_offset": {
|
|
"label": "Annotation offset",
|
|
"description": "Milliseconds to shift detect annotations to better align timeline bounding boxes with recordings; can be positive or negative."
|
|
}
|
|
}
|