Trait cv::features2d::Feature2D[][src]

pub trait Feature2D {
    fn detect_and_compute(
        &self,
        image: &Mat,
        mask: &Mat
    ) -> (Vec<KeyPoint>, Mat); }

Basic trait for 2D image feature detectors and descriptor extractors

Required methods

fn detect_and_compute(&self, image: &Mat, mask: &Mat) -> (Vec<KeyPoint>, Mat)[src]

Detects keypoints and computes the descriptors

Loading content...

Implementors

impl Feature2D for SIFT[src]

impl Feature2D for SURF[src]

Loading content...