mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-19 06:38:21 +03:00
45 lines
1.7 KiB
JSON
45 lines
1.7 KiB
JSON
{
|
|
"label": "Face recognition",
|
|
"description": "Settings for face detection and recognition; can be overridden per-camera.",
|
|
"enabled": {
|
|
"label": "Enable face recognition",
|
|
"description": "Enable or disable face recognition globally."
|
|
},
|
|
"model_size": {
|
|
"label": "Model size",
|
|
"description": "Model size to use for face embeddings (small/large); larger may require GPU."
|
|
},
|
|
"unknown_score": {
|
|
"label": "Unknown score threshold",
|
|
"description": "Distance threshold below which a face is considered a potential match (higher = stricter)."
|
|
},
|
|
"detection_threshold": {
|
|
"label": "Detection threshold",
|
|
"description": "Minimum detection confidence required to consider a face detection valid."
|
|
},
|
|
"recognition_threshold": {
|
|
"label": "Recognition threshold",
|
|
"description": "Face embedding distance threshold to consider two faces a match."
|
|
},
|
|
"min_area": {
|
|
"label": "Minimum face area",
|
|
"description": "Minimum area (pixels) of a detected face box required to attempt recognition."
|
|
},
|
|
"min_faces": {
|
|
"label": "Minimum faces",
|
|
"description": "Minimum number of face recognitions required before applying a recognized sub-label to a person."
|
|
},
|
|
"save_attempts": {
|
|
"label": "Save attempts",
|
|
"description": "Number of face recognition attempts to retain for recent recognition UI."
|
|
},
|
|
"blur_confidence_filter": {
|
|
"label": "Blur confidence filter",
|
|
"description": "Adjust confidence scores based on image blur to reduce false positives for poor quality faces."
|
|
},
|
|
"device": {
|
|
"label": "Device",
|
|
"description": "This is an override, to target a specific device. See https://onnxruntime.ai/docs/execution-providers/ for more information"
|
|
}
|
|
}
|