From a9d8d45df435dea202a8e42d4a3f686fae8755a2 Mon Sep 17 00:00:00 2001 From: richard28039 Date: Thu, 11 Jul 2024 03:15:52 +0800 Subject: [PATCH] fix the mistake --- doc/tutorials/dnn/dnn_yolo/dnn_yolo.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorials/dnn/dnn_yolo/dnn_yolo.markdown b/doc/tutorials/dnn/dnn_yolo/dnn_yolo.markdown index ce95234f88..8406b4746c 100644 --- a/doc/tutorials/dnn/dnn_yolo/dnn_yolo.markdown +++ b/doc/tutorials/dnn/dnn_yolo/dnn_yolo.markdown @@ -222,7 +222,7 @@ cd .. export OPENCV_TEST_DATA_PATH=$(pwd) cd -./bin/example_dnn_yolo_detector --model=onnx/models/yolov8n.onnx --yolo=yolov10 --width=640 --height=480 --scale=0.003921568627 --padvalue=114 +./bin/example_dnn_yolo_detector --model=onnx/models/yolov10s.onnx --yolo=yolov10 --width=640 --height=480 --scale=0.003921568627 --padvalue=114 @endcode This will run `YOLOv10` detector on first camera found on your system. If you want to run it on a image/video file, you can use `--input` option to specify the path to the file.