@@ -41,7 +41,7 @@ cargo run -r --example yolo -- --task detect --ver v9 --scale t # YOLOv9
4141cargo run -r --example yolo -- --task detect --ver v10 --scale n # YOLOv10
4242cargo run -r --example yolo -- --task detect --ver v11 --scale n # YOLOv11
4343cargo run -r --example yolo -- --task detect --ver rtdetr --scale l # RTDETR
44- cargo run -r --example yolo -- --task detect --ver v8 --nc 1 -- model yolov8s- world-v2-shoes.onnx # YOLOv8-world <local file>
44+ cargo run -r --example yolo -- --task detect --ver v8 --model yolo/v8-s- world-v2-shoes.onnx # YOLOv8-world
4545
4646# Pose
4747cargo run -r --example yolo -- --task pose --ver v8 --scale n # YOLOv8-Pose
@@ -51,7 +51,7 @@ cargo run -r --example yolo -- --task pose --ver v11 --scale n # YOLOv11-Pose
5151cargo run -r --example yolo -- --task segment --ver v5 --scale n # YOLOv5-Segment
5252cargo run -r --example yolo -- --task segment --ver v8 --scale n # YOLOv8-Segment
5353cargo run -r --example yolo -- --task segment --ver v11 --scale n # YOLOv8-Segment
54- cargo run -r --example yolo -- --task segment --ver v8 --model FastSAM-s-dyn-f16.onnx # FastSAM <local file>
54+ cargo run -r --example yolo -- --task segment --ver v8 --model yolo/ FastSAM-s-dyn-f16.onnx # FastSAM
5555
5656# Obb
5757cargo run -r --example yolo -- --ver v8 --task obb --scale n --width 1024 --height 1024 --source images/dota.png # YOLOv8-Obb
@@ -70,8 +70,6 @@ cargo run -r --example yolo -- --ver v11 --task obb --scale n --width 1024 --hei
7070let options = Options :: default ()
7171 . with_yolo_version (YOLOVersion :: V5 ) // YOLOVersion: V5, V6, V7, V8, V9, V10, RTDETR
7272 . with_yolo_task (YOLOTask :: Classify ) // YOLOTask: Classify, Detect, Pose, Segment, Obb
73- // .with_nc(80)
74- // .with_names(&COCO_CLASS_NAMES_80)
7573 . with_model (" xxxx.onnx" )? ;
7674
7775```
@@ -94,6 +92,8 @@ let options = Options::default()
9492 .. Default :: default ()
9593 }
9694 )
95+ // .with_nc(80)
96+ // .with_names(&COCO_CLASS_NAMES_80)
9797 . with_model (" xxxx.onnx" )? ;
9898```
9999</details >
0 commit comments