[][src]Trait opencv::objdetect::DetectionROITrait

pub trait DetectionROITrait {
    pub fn as_raw_DetectionROI(&self) -> *const c_void;
pub fn as_raw_mut_DetectionROI(&mut self) -> *mut c_void; pub fn scale(&self) -> f64 { ... }
pub fn set_scale(&mut self, val: f64) { ... }
pub fn locations(&mut self) -> Vector<Point> { ... }
pub fn set_locations(&mut self, val: Vector<Point>) { ... }
pub fn confidences(&mut self) -> Vector<f64> { ... }
pub fn set_confidences(&mut self, val: Vector<f64>) { ... } }

struct for detection region of interest (ROI)

Required methods

Loading content...

Provided methods

pub fn scale(&self) -> f64[src]

scale(size) of the bounding box

pub fn set_scale(&mut self, val: f64)[src]

scale(size) of the bounding box

pub fn locations(&mut self) -> Vector<Point>[src]

set of requested locations to be evaluated

pub fn set_locations(&mut self, val: Vector<Point>)[src]

set of requested locations to be evaluated

pub fn confidences(&mut self) -> Vector<f64>[src]

vector that will contain confidence values for each location

pub fn set_confidences(&mut self, val: Vector<f64>)[src]

vector that will contain confidence values for each location

Loading content...

Implementors

impl DetectionROITrait for DetectionROI[src]

Loading content...