Files
usls/examples/yolov8-trash/main.rs
Jamjamjon a0d410b46d Dev (#1)
* Update imageproc crates

* Add top-p method for sampling

* Add SVTR for text recognition & bug fix
2024-04-06 16:16:53 +08:00

23 lines
591 B
Rust

use usls::{models::YOLO, Annotator, DataLoader, Options};
fn main() -> Result<(), Box<dyn std::error::Error>> {
// 1.build model
let options = Options::default()
.with_model("../models/yolov8-plastic-bag-f16.onnx")
.with_confs(&[0.3])
.with_names(&["trash"]);
let mut model = YOLO::new(&options)?;
// load image
let x = vec![DataLoader::try_read("./assets/trash.jpg")?];
// run
let y = model.run(&x)?;
// annotate
let annotator = Annotator::default().with_saveout("YOLOv8-Trash");
annotator.annotate(&x, &y);
Ok(())
}