You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add yolo11s/yolo26s support and model-proc handling in multistream sample
Add new supported models (yolo11s, yolo26s) to the multi-stream sample and README. Generalize README note to instruct downloading required models to $MODELS_PATH/public/{model_name}/FP16 and list supported models plus an additional example. Update multi_stream_sample.sh help text and defaults to include the new models, add empty model-proc entries for them, and simplify/robustify model-proc handling: only call realpath and append model-proc when a model-proc file is set, otherwise omit the model-proc parameter from model arguments.
Copy file name to clipboardExpand all lines: samples/gstreamer/gst_launch/multi_stream/README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ It combines four pipelines. By default, the first two streams run on NPU [Intel
7
7
This sample utilizes GStreamer command-line tool `gst-launch-1.0` which can build and run GStreamer pipeline described in a string format.
8
8
The string contains a list of GStreamer elements separated by exclamation mark `!`, each element may have properties specified in the format `property`=`value`.
9
9
10
-
> **NOTE**: Before running, download the yolov8s model to `$MODELS_PATH/public/yolov8s/FP16/`.
11
-
Please follow instruction: [Detection with Yolo](./gst_launch/detection_with_yolo/README.md) how to download Yolov8s model.
10
+
> **NOTE**: Before running, download the required models to `$MODELS_PATH/public/{model_name}/FP16/`.
11
+
Please follow instruction: [Detection with Yolo](./gst_launch/detection_with_yolo/README.md) how to download YOLO models.
12
12
13
13
This sample builds for GStreamer a pipeline of the following elements:
14
14
*`filesrc`
@@ -17,6 +17,9 @@ This sample builds for GStreamer a pipeline of the following elements:
17
17
*[gvadetect](../../../../docs/source/elements/gvadetect.md) uses for full-frame object detection and marking objects with labels
18
18
*[gvawatermark](../../../../docs/source/elements/gvawatermark.md) for points and visualization of their connections
19
19
*`autovideosink` for rendering output video into screen
0 commit comments