Skip to main content

Quick start

Spin up your first pipeline in three steps.

1. Create a config file

Save this as pipeline.yaml:

pipeline:
name: "My First Pipeline"

streams:
- uri: "file:///path/to/video.mp4"
source_id: 0

models:
- name: "my-detector"
type: "detector"
architecture: "yolo11"
onnx_file: /path/to/model.onnx
label_file: /path/to/labels.txt

sinks:
width: 1280
height: 720
outputs:
- type: "display"

2. Run it

vision-runner pipeline.yaml

3. Stop the pipeline

Press Ctrl+C.