Skip to content
Discussion options

You must be logged in to vote

Your setup has two separate GPU workloads to consider: video decoding and object detection. Based on your screenshots and config, your video decoding via NVIDIA is actually working—the nvidia-smi output shows /usr/lib/ffmpeg/7.0/bin/ffmpeg using 92MiB of GPU memory, which indicates hardware-accelerated decoding is active. (1)

However, your ONNX detectors are not using the GPU for object detection. To use NVIDIA GPUs for ONNX-based object detection, you must use the Frigate Docker image with the -tensorrt suffix, for example ghcr.io/blakeblackshear/frigate:stable-tensorrt. (2)

The standard Frigate image does not include TensorRT support, so even though you've configured type: onnx detector…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@anjoze
Comment options

Answer selected by anjoze
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment