Files
usls/examples/yolov8-face/README.md
jamjamjon af934086bb Initial
2024-03-29 15:54:24 +08:00

529 B

Quick Start

cargo run -r --example yolov8-face

Or you can manully

1. Donwload ONNX Model

yolov8-face-dyn-f16

2. Specify the ONNX model path in main.rs

let options = Options::default()
    .with_model("ONNX_PATH")    // <= modify this
    .with_profile(false);
let mut model = YOLO::new(&options)?;

3. Then, run

cargo run -r --example yolov8-face

Results