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: "rtsp://192.168.1.100:554/live"
source_id: 0

models:
- name: "my-detector"
type: "detector"
architecture: "yolo"
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.