OpenVINO detector not starting (no logs, no errors) on 0.17.1 #22738
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Based on your Frigate stats output, your OpenVINO detector is actually running and working correctly. The stats show: "detectors":{"ov":{"inference_speed":22.23,"detection_start":0.0,"pid":567}}This indicates:
Your screenshots also confirm this - the "Detector Inference Speed" graph shows ~27ms inference times, and the detector is processing frames. The reason you don't see explicit "Starting OpenVINO detector" log messages is that your logger is set to If you want to see more detailed startup logs, change your logger configuration: logger:
default: infoYour configuration looks correct for the default OpenVINO model:(1) detectors:
ov:
type: openvino
device: CPU
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.txtYour i5-6400 (6th Gen Skylake) meets the minimum requirements for OpenVINO, which supports 6th Gen Intel platforms and newer.(1) If you want to use GPU acceleration instead of CPU for potentially better performance, change 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
Yes, the screenshots show the detector is running |
Beta Was this translation helpful? Give feedback.





Based on your Frigate stats output, your OpenVINO detector is actually running and working correctly. The stats show:
This indicates:
ovhas PID 567 and is activeYour screenshots also confirm this - the "Detector Inference Speed" graph shows ~27ms inference times, and the detector is processing frames.
The reason you don't see explicit "Starting OpenVINO detector" log messages is that your logger is set to
errorlevel in your config, which suppresses informational messages.(1)If you want to see more detailed startup logs,…