79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"queue": { "size": 8, "strategy": "drop_oldest" },
|
|
"graphs": [
|
|
{
|
|
"name": "cam1_custom_yolov8",
|
|
"nodes": [
|
|
{
|
|
"id": "in_cam1",
|
|
"type": "input_rtsp",
|
|
"role": "source",
|
|
"enable": true,
|
|
"url": "rtsp://192.168.1.100:554/stream",
|
|
"fps": 25,
|
|
"width": 1920,
|
|
"height": 1080,
|
|
"use_mpp": false,
|
|
"use_ffmpeg": true,
|
|
"force_tcp": true
|
|
},
|
|
{
|
|
"id": "pre_cam1",
|
|
"type": "preprocess",
|
|
"role": "filter",
|
|
"enable": true,
|
|
"dst_w": 640,
|
|
"dst_h": 640,
|
|
"dst_format": "rgb",
|
|
"keep_ratio": false,
|
|
"use_rga": true
|
|
},
|
|
{
|
|
"id": "ai_cam1",
|
|
"type": "ai_yolo",
|
|
"role": "filter",
|
|
"enable": true,
|
|
"model_path": "/models/your_custom_yolov8.rknn",
|
|
"model_version": "v8",
|
|
"num_classes": 5,
|
|
"conf": 0.5,
|
|
"nms": 0.45,
|
|
"class_filter": []
|
|
},
|
|
{
|
|
"id": "osd_cam1",
|
|
"type": "osd",
|
|
"role": "filter",
|
|
"enable": true,
|
|
"draw_bbox": true,
|
|
"draw_text": true,
|
|
"line_width": 3,
|
|
"font_scale": 2,
|
|
"labels": ["cat", "dog", "bird", "car", "person"]
|
|
},
|
|
{
|
|
"id": "pub_cam1",
|
|
"type": "publish",
|
|
"role": "sink",
|
|
"enable": true,
|
|
"codec": "h264",
|
|
"fps": 25,
|
|
"gop": 50,
|
|
"bitrate_kbps": 2000,
|
|
"use_mpp": true,
|
|
"use_ffmpeg_mux": true,
|
|
"outputs": [
|
|
{ "proto": "rtsp_server", "port": 8554, "path": "/live/cam1" }
|
|
]
|
|
}
|
|
],
|
|
"edges": [
|
|
["in_cam1", "pre_cam1"],
|
|
["pre_cam1", "ai_cam1"],
|
|
["ai_cam1", "osd_cam1"],
|
|
["osd_cam1", "pub_cam1"]
|
|
]
|
|
}
|
|
]
|
|
}
|