add docs for troubleshooting GPUs (#18644)

* add docs for troubleshooting GPUs

* Fix error when blur is not enabled

* Cleanup
This commit is contained in:
Nicolas Mowen 2025-06-09 12:19:56 -06:00 committed by GitHub
parent 03768e0050
commit 99e7533de2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,13 @@
---
id: gpu
title: Troubleshooting GPU
---
## OpenVINO
### Can't get OPTIMIZATION_CAPABILITIES property as no supported devices found.
Some users have reported issues using some Intel iGPUs with OpenVINO, where the GPU would not be detected. This error can be caused by various problems, so it is important to ensure the configuration is setup correctly. Some solutions users have noted:
- In some cases users have noted that an HDMI dummy plug was necessary to be plugged into the motherboard's HDMI port.
- When mixing an Intel iGPU with Nvidia GPU, the devices can be mixed up between `/dev/dri/renderD128` and `/dev/dri/renderD129` so it is important to confirm the correct device, or map the entire `/dev/dri` directory into the Frigate container.

View File

@ -100,6 +100,7 @@ const sidebars: SidebarsConfig = {
Troubleshooting: [
"troubleshooting/faqs",
"troubleshooting/recordings",
"troubleshooting/gpu",
"troubleshooting/edgetpu",
],
Development: [

View File

@ -111,7 +111,7 @@ class FaceRecognizer(ABC):
def get_blur_confidence_reduction(self, input: np.ndarray) -> tuple[float, float]:
"""Calculates the reduction in confidence based on the blur of the image."""
if not self.config.face_recognition.blur_confidence_filter:
return 1.0
return 0, 0.0
variance = cv2.Laplacian(input, cv2.CV_64F).var()