[][src]Trait opencv::features2d::AgastFeatureDetector

pub trait AgastFeatureDetector: 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, _type: i32) -> Result<()> { ... }
fn get_type(&self) -> Result<i32> { ... }
fn get_default_name(&self) -> Result<String> { ... } }

Wrapping class for feature detection using the AGAST method. :

Required methods

Loading content...

Provided methods

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: i32) -> Result<()>

fn get_type(&self) -> Result<i32>

fn get_default_name(&self) -> Result<String>

Loading content...

Methods

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

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

C++ default parameters

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

Implementors

Loading content...