Trait opencv::features2d::prelude::FastFeatureDetectorTrait
source · pub trait FastFeatureDetectorTrait: FastFeatureDetectorTraitConst + Feature2DTrait {
// Required method
fn as_raw_mut_FastFeatureDetector(&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: FastFeatureDetector_DetectorType) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::features2d::FastFeatureDetector
Required Methods§
fn as_raw_mut_FastFeatureDetector(&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: FastFeatureDetector_DetectorType) -> Result<()>
Object Safety§
This trait is not object safe.