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

pub trait FastFeatureDetector: Feature2D {
    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 FAST method. :

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<'a> dyn FastFeatureDetector + 'a[src]

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

C++ default parameters

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

Implementors

impl FastFeatureDetector for PtrOfFastFeatureDetector[src]

fn set_threshold(&mut self, threshold: i32) -> Result<()>[src]

fn get_threshold(&self) -> Result<i32>[src]

fn set_nonmax_suppression(&mut self, f: bool) -> Result<()>[src]

fn get_nonmax_suppression(&self) -> Result<bool>[src]

fn set_type(&mut self, _type: i32) -> Result<()>[src]

fn get_type(&self) -> Result<i32>[src]

fn get_default_name(&self) -> Result<String>[src]

Loading content...