[][src]Trait opencv::prelude::AgastFeatureDetector

pub trait AgastFeatureDetector: AlgorithmTrait + Feature2DTrait {
    fn as_raw_AgastFeatureDetector(&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, typ: AgastFeatureDetector_DetectorType) -> Result<()> { ... }
fn get_type(&self) -> Result<AgastFeatureDetector_DetectorType> { ... }
fn get_default_name(&self) -> Result<String> { ... } }

Wrapping class for feature detection using the AGAST method. :

Required methods

Loading content...

Provided methods

Loading content...

Methods

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

pub fn create(
    threshold: i32,
    nonmax_suppression: bool,
    typ: AgastFeatureDetector_DetectorType
) -> Result<PtrOfAgastFeatureDetector>
[src]

C++ default parameters

  • threshold: 10
  • nonmax_suppression: true
  • typ: AgastFeatureDetector::OAST_9_16

Implementors

Loading content...