Trait cv::objdetect::ObjectDetect[][src]

pub trait ObjectDetect {
    fn detect(&self, image: &Mat) -> Vec<(Rect, f64)>;
}

An object detect trait.

Required methods

fn detect(&self, image: &Mat) -> Vec<(Rect, f64)>[src]

Detects the object inside this image and returns a list of detections with their confidence.

Loading content...

Implementors

impl ObjectDetect for GpuCascade[src]

impl ObjectDetect for GpuHog[src]

impl ObjectDetect for CascadeClassifier[src]

impl ObjectDetect for HogDescriptor[src]

Loading content...