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

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

struct for detection region of interest (ROI)

Required methods

Loading content...

Provided methods

fn scale(&self) -> f64

scale(size) of the bounding box

fn set_scale(&mut self, val: f64)

scale(size) of the bounding box

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

set of requested locations to be evaluated

fn set_locations(&mut self, val: Vector<Point>)

set of requested locations to be evaluated

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

vector that will contain confidence values for each location

fn set_confidences(&mut self, val: Vector<f64>)

vector that will contain confidence values for each location

Loading content...

Implementors

Loading content...