object_detector 0.1.1

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
#![allow(clippy::missing_panics_doc, clippy::missing_errors_doc)]

pub mod predictor;
pub use predictor::{Detection, PreprocessMeta, YOLO26Predictor};