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

pub trait FastFeatureDetector: Feature2DTrait {
    fn as_raw_FastFeatureDetector(&self) -> *mut c_void;

    fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
fn get_threshold(&self) -> Result<i32> { ... }
fn set_nonmax_suppression(&mut self, f: bool) -> Result<()> { ... }
fn get_nonmax_suppression(&self) -> Result<bool> { ... }
fn set_type(
        &mut self,
        _type: FastFeatureDetector_DetectorType
    ) -> Result<()> { ... }
fn get_type(&self) -> Result<FastFeatureDetector_DetectorType> { ... }
fn get_default_name(&self) -> Result<String> { ... } }

Wrapping class for feature detection using the FAST method. :

Required methods

Loading content...

Provided methods

Loading content...

Methods

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

pub fn create(
    threshold: i32,
    nonmax_suppression: bool,
    _type: FastFeatureDetector_DetectorType
) -> Result<PtrOfFastFeatureDetector>
[src]

C++ default parameters

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

Implementors

Loading content...