[Config Support]: Noob trying to get basic motion detection working. #21985
Replies: 2 comments 4 replies
|
Based on your configuration and stats, I can see several issues that are preventing events and alerts from being created. Main Configuration Issues1. Detector Configuration Problem Your detector configuration has incorrect parameters. The OpenVINO detector doesn't use Change your detector configuration from: detectors:
ov:
type: openvino
device: GPU
model_path: /openvino-model/ssdlite_mobilenet_v2.xml
labelmap_path: /openvino-model/coco_91cl_bkgr.txtTo: detectors:
ov:
type: openvino
device: GPUYour global model:
width: 300
height: 300
input_tensor: nhwc
input_pixel_format: bgr2. Review Configuration Missing Your cameras have Add this to your global configuration: review:
alerts:
required_zones: []
detections:
required_zones: []3. Objects Configuration Issue You've configured objects:
track:
- personShould be moved to the global level or restructured. The global objects:
track:
- personWhy You're Not Seeing EventsFrom the similar issue in the documentation(3), when detection is running but no events are created, it's often because:
Your stats show Recommended Configuration StructureHere's how your configuration should be structured: mqtt:
enabled: true
detectors:
ov:
type: openvino
device: GPU
model:
width: 300
height: 300
input_tensor: nhwc
input_pixel_format: bgr
path: /openvino-model/ssdlite_mobilenet_v2.xml
labelmap_path: /openvino-model/coco_91cl_bkgr.txt
objects:
track:
- person
review:
alerts:
required_zones: []
detections:
required_zones: []
record:
enabled: true
continuous:
days: 7
motion:
days: 30
snapshots:
enabled: true
retain:
default: 7Then in your camera configurations, remove the Additional NotesThe green/red boxes you see in debug mode indicate motion detection is working(4). The fact that you're not seeing these in live view is expected behavior - they only appear in the debug view(5). After making these changes, restart Frigate and monitor the logs for any errors. You should start seeing events created when people are detected in your camera views. 📚 Sources:
Have another question? Just tag @inkeep. |
|
The AI was sort of right, but your model config is wrong. The model and labelmap path must be under the |


yes, it is not
model_pathit is justpath