object_detector 0.5.0

Object detection using ORT and the yoloe-26-seg model. This model can detect multiple objects per image, each having a tag, pixel-level mask, and a boundingbox. It's pretrained, it has a vocabulary of 4000+ objects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "promptable")]
mod embedding_cache;
pub mod nms;
mod processing;
mod prompt_free_detector;
#[cfg(feature = "promptable")]
mod promptable_detector;

#[cfg(feature = "promptable")]
pub use embedding_cache::EmbeddingCache;
pub use processing::*;
pub use prompt_free_detector::*;
#[cfg(feature = "promptable")]
pub use promptable_detector::*;