[][src]Trait opencv::features2d::prelude::FastFeatureDetector

pub trait FastFeatureDetector: Feature2DTrait {
    pub fn as_raw_FastFeatureDetector(&self) -> *const c_void;
pub fn as_raw_mut_FastFeatureDetector(&mut self) -> *mut c_void; pub fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
pub fn get_threshold(&self) -> Result<i32> { ... }
pub fn set_nonmax_suppression(&mut self, f: bool) -> Result<()> { ... }
pub fn get_nonmax_suppression(&self) -> Result<bool> { ... }
pub fn set_type(
        &mut self,
        typ: FastFeatureDetector_DetectorType
    ) -> Result<()> { ... }
pub fn get_type(&self) -> Result<FastFeatureDetector_DetectorType> { ... }
pub fn get_default_name(&self) -> Result<String> { ... } }

Wrapping class for feature detection using the FAST method. :

Required methods

Loading content...

Provided methods

Loading content...

Implementations

impl<'_> dyn FastFeatureDetector + '_[src]

pub fn create(
    threshold: i32,
    nonmax_suppression: bool,
    typ: FastFeatureDetector_DetectorType
) -> Result<Ptr<dyn FastFeatureDetector>>
[src]

C++ default parameters

  • threshold: 10
  • nonmax_suppression: true
  • typ: FastFeatureDetector::TYPE_9_16

Implementors

Loading content...