Lists available models for the object detection module.
| Enumerator |
|---|
| MULTI_CLASS_BOX_FAST | Any objects, bounding box based.
|
| MULTI_CLASS_BOX_MEDIUM | Any objects, bounding box based, compromise between accuracy and speed.
|
| MULTI_CLASS_BOX_ACCURATE | Any objects, bounding box based, more accurate but slower than the base model.
|
| PERSON_HEAD_BOX_FAST | Bounding box detector specialized in person heads particularly well suited for crowded environments. The person localization is also improved.
|
| PERSON_HEAD_BOX_ACCURATE | Bounding box detector specialized in person heads, particularly well suited for crowded environments. The person localization is also improved, more accurate but slower than the base model.
|
| CUSTOM_BOX_OBJECTS | For external inference, using your own custom model and/or frameworks. This mode disables the internal inference engine, the 2D bounding box detection must be provided.
|
| CUSTOM_YOLOLIKE_BOX_OBJECTS | For internal inference using your own custom YOLO-like model. Requires an ONNX file in the detection parameters.
|
| CUSTOM_RFDETRLIKE_BOX_OBJECTS | For internal inference using your own custom RF-DETR / DETR-like model (two outputs: boxes + class logits, NMS-free). Requires an ONNX file.
|
| CUSTOM_BOX_OBJECTS_AUTODETECT | For internal inference using your own custom ONNX model, auto-detecting YOLO-like vs RF-DETR/DETR-like from the model outputs. Requires an ONNX file.
|