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

    // Provided methods
    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§

source

fn scale(&self) -> f64

scale(size) of the bounding box

source

fn locations(&self) -> Vector<Point>

set of requested locations to be evaluated

source

fn confidences(&self) -> Vector<f64>

vector that will contain confidence values for each location

Implementors§