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

pub trait DetectionROITrait {
    fn as_raw_DetectionROI(&self) -> *mut c_void;

    fn scale(&self) -> f64 { ... }
fn set_scale(&mut self, val: f64) { ... }
fn locations(&mut self) -> VectorOfPoint { ... }
fn set_locations(&mut self, val: VectorOfPoint) { ... }
fn confidences(&mut self) -> VectorOff64 { ... }
fn set_confidences(&mut self, val: VectorOff64) { ... } }

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) -> VectorOfPoint

set of requested locations to be evaluated

fn set_locations(&mut self, val: VectorOfPoint)

set of requested locations to be evaluated

fn confidences(&mut self) -> VectorOff64

vector that will contain confidence values for each location

fn set_confidences(&mut self, val: VectorOff64)

vector that will contain confidence values for each location

Loading content...

Implementors

impl DetectionROITrait for DetectionROI[src]

Loading content...