pub trait DetectionROITraitConst {
    fn as_raw_DetectionROI(&self) -> *const c_void;

    fn scale(&self) -> f64 { ... }
    fn locations(&self) -> Vector<Point> { ... }
    fn confidences(&self) -> Vector<f64> { ... }
}
Expand description

Constant methods for crate::objdetect::DetectionROI

Required Methods§

Provided Methods§

scale(size) of the bounding box

set of requested locations to be evaluated

vector that will contain confidence values for each location

Implementors§