use usls::{models::YOLO, Annotator, DataLoader, Options}; fn main() -> Result<(), Box> { // 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(()) }