Trait AgastFeatureDetectorTrait

Source
pub trait AgastFeatureDetectorTrait: AgastFeatureDetectorTraitConst + Feature2DTrait {
    // Required method
    fn as_raw_mut_AgastFeatureDetector(&mut self) -> *mut c_void;

    // Provided methods
    fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
    fn set_nonmax_suppression(&mut self, f: bool) -> Result<()> { ... }
    fn set_type(&mut self, typ: AgastFeatureDetector_DetectorType) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

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

Source

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

Source

fn set_type(&mut self, typ: AgastFeatureDetector_DetectorType) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§