Files
usls/examples/face-parsing/main.rs
Jamjamjon fc970fc117 Update ort and improve the speed of preprocessing
* Add onnx proto

* Update ort to 2.0.0-rc.2

* Improve the speed of resizing

* Fix yolo-seg bug

* Update README.md
2024-05-12 18:12:34 +08:00

33 lines
889 B
Rust

use usls::{models::YOLO, Annotator, DataLoader, Options};
fn main() -> Result<(), Box<dyn std::error::Error>> {
// build model
let options = Options::default()
.with_model("face-parsing-dyn.onnx")?
.with_i00((1, 1, 4).into())
.with_i02((416, 640, 800).into())
.with_i03((416, 640, 800).into())
// .with_trt(0)
// .with_fp16(true)
.with_confs(&[0.5]);
let mut model = YOLO::new(options)?;
// load image
let x = vec![DataLoader::try_read("./assets/nini.png")?];
// run
let y = model.run(&x)?;
// annotate
let annotator = Annotator::default()
.without_bboxes(true)
.without_bboxes_conf(true)
.without_bboxes_name(true)
.without_contours(false)
.with_polygons_name(false)
.with_saveout("Face-Parsing");
annotator.annotate(&x, &y);
Ok(())
}