From 01392e03ac6b81086ae418328b4a39aea787eb33 Mon Sep 17 00:00:00 2001
From: Nicolas Mowen DEIMv2 Setup & Config
+
+After placing the downloaded onnx model in your `config/model_cache` folder, you can use the following configuration:
+
+```yaml
+detectors:
+ ov:
+ type: openvino
+ device: CPU
+
+model:
+ model_type: dfine
+ width: 640
+ height: 640
+ input_tensor: nchw
+ input_dtype: float
+ path: /config/model_cache/deimv2_hgnetv2_n.onnx
+ labelmap_path: /labelmap/coco-80.txt
+```
+
+Note that the labelmap uses a subset of the complete COCO label set that has only 80 objects.
+
+D-FINE Setup & Config
@@ -848,6 +873,28 @@ model:
DEIMv2 Setup & Config
+
+After placing the downloaded onnx model in your `config/model_cache` folder, you can use the following configuration:
+
+```yaml
+detectors:
+ onnx:
+ type: onnx
+
+model:
+ model_type: dfine
+ width: 640
+ height: 640
+ input_tensor: nchw
+ input_dtype: float
+ path: /config/model_cache/deimv2_hgnetv2_n.onnx
+ labelmap_path: /labelmap/coco-80.txt
+```
+
+
@@ -495,6 +495,17 @@ export default function TriggerView({ camera: cameraName, })}
+