From 647fcc460c4c9e064860b5a2ccd16d9d08dd0c8d Mon Sep 17 00:00:00 2001 From: RichardPar Date: Sat, 13 May 2023 22:22:22 +0100 Subject: [PATCH] Added detectors docs --- docs/docs/configuration/detectors.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/docs/configuration/detectors.md b/docs/docs/configuration/detectors.md index 7fbd03f79..af8f4e7a9 100644 --- a/docs/docs/configuration/detectors.md +++ b/docs/docs/configuration/detectors.md @@ -277,4 +277,19 @@ detectors: Replace `` and `` with the IP address and port of your CodeProject.AI server. -To verify that the integration is working correctly, start Frigate and observe the logs for any error messages related to CodeProject.AI. Additionally, you can check the Frigate web interface to see if the objects detected by CodeProject.AI are being displayed and tracked properly. \ No newline at end of file +To verify that the integration is working correctly, start Frigate and observe the logs for any error messages related to CodeProject.AI. Additionally, you can check the Frigate web interface to see if the objects detected by CodeProject.AI are being displayed and tracked properly. + +## ARMGPU Khadas VIM4 SBC + +The ARMGPU detector type runs a TensorFlow Lite model utilizing the MALI GPU hardware acceleration. + +A TensorFlow Lite model is provided in the container at `/cpu_model.tflite` and is used by this detector type by default. To provide your own model, bind mount the file into the container and provide the path with `model.path`. + +```yaml +detectors: + armgpu: + type: armgpu + +``` + +