mirror of
https://github.com/mii443/usls.git
synced 2025-08-22 15:45:41 +00:00
34 lines
922 B
Rust
34 lines
922 B
Rust
use anyhow::Result;
|
|
use usls::{models::RTDETR, Annotator, DataLoader, ModelConfig};
|
|
|
|
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();
|
|
|
|
// config
|
|
let mut model = RTDETR::new(ModelConfig::deim_dfine_s_coco().commit()?)?;
|
|
|
|
// load
|
|
let xs = DataLoader::try_read_n(&["./assets/bus.jpg"])?;
|
|
|
|
// run
|
|
let ys = model.forward(&xs)?;
|
|
println!("{:?}", ys);
|
|
|
|
// annotate
|
|
let annotator = Annotator::default();
|
|
for (x, y) in xs.iter().zip(ys.iter()) {
|
|
annotator.annotate(x, y)?.save(format!(
|
|
"{}.jpg",
|
|
usls::Dir::Current
|
|
.base_dir_with_subs(&["runs", model.spec()])?
|
|
.join(usls::timestamp(None))
|
|
.display(),
|
|
))?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|