mirror of
https://github.com/mii443/usls.git
synced 2025-08-22 15:45:41 +00:00
535 B
535 B
Quick Start
cargo run -r --example yolov8-falldown
Or you can manully
1.Donwload ONNX Model
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-falldown