Instance segmentation
Detects objects and produces per-instance segmentation masks. Mask overlays are drawn automatically on the output video.
models:
- name: "yolo-seg"
type: "segmentation"
architecture: "yolo_seg11"
onnx_file: /path/to/yolo11s-seg.onnx
label_file: /path/to/labels.txt
Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
architecture | string | Yes | — | Segmentation architecture (see supported architectures) |
active_classes | list of int | No | all classes | Only detect these class IDs |
Plus the common model fields.
Supported architectures
| Architecture | Description |
|---|---|
yolo_seg5 | YOLOv5 Segmentation |
yolo_seg8 | YOLOv8 Segmentation |
yolo_seg11 | YOLO11 Segmentation |
yolo_seg26 | YOLO26 Segmentation |