mirror of
https://github.com/mii443/usls.git
synced 2025-08-22 15:45:41 +00:00
44 lines
1.1 KiB
Rust
44 lines
1.1 KiB
Rust
use anyhow::Result;
|
|
use usls::{models::RTDETR, Annotator, DataLoader, Options};
|
|
|
|
fn main() -> Result<()> {
|
|
tracing_subscriber::fmt()
|
|
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
|
|
.with_timer(tracing_subscriber::fmt::time::ChronoLocal::rfc_3339())
|
|
.init();
|
|
|
|
// options
|
|
let options = Options::rtdetr_v2_s_coco()
|
|
// rtdetr_v1_r18vd_coco()
|
|
// rtdetr_v2_ms_coco()
|
|
// rtdetr_v2_m_coco()
|
|
// rtdetr_v2_l_coco()
|
|
// rtdetr_v2_x_coco()
|
|
.commit()?;
|
|
let mut model = RTDETR::new(options)?;
|
|
|
|
// load
|
|
let xs = [DataLoader::try_read("./assets/bus.jpg")?];
|
|
|
|
// run
|
|
let ys = model.forward(&xs)?;
|
|
|
|
// extract bboxes
|
|
for y in ys.iter() {
|
|
if let Some(bboxes) = y.bboxes() {
|
|
println!("[Bboxes]: Found {} objects", bboxes.len());
|
|
for (i, bbox) in bboxes.iter().enumerate() {
|
|
println!("{}: {:?}", i, bbox)
|
|
}
|
|
}
|
|
}
|
|
|
|
// annotate
|
|
let annotator = Annotator::default()
|
|
.with_bboxes_thickness(3)
|
|
.with_saveout(model.spec());
|
|
annotator.annotate(&xs, &ys);
|
|
|
|
Ok(())
|
|
}
|