Trait opencv::hub_prelude::DetectionROITraitConst[][src]

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

struct for detection region of interest (ROI)

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