Trait opencv::prelude::FastFeatureDetectorTraitConst
source · pub trait FastFeatureDetectorTraitConst: Feature2DTraitConst {
// Required method
fn as_raw_FastFeatureDetector(&self) -> *const c_void;
// Provided methods
fn get_threshold(&self) -> Result<i32> { ... }
fn get_nonmax_suppression(&self) -> Result<bool> { ... }
fn get_type(&self) -> Result<FastFeatureDetector_DetectorType> { ... }
fn get_default_name(&self) -> Result<String> { ... }
}
Expand description
Constant methods for crate::features2d::FastFeatureDetector
Required Methods§
fn as_raw_FastFeatureDetector(&self) -> *const c_void
Provided Methods§
fn get_threshold(&self) -> Result<i32>
fn get_nonmax_suppression(&self) -> Result<bool>
fn get_type(&self) -> Result<FastFeatureDetector_DetectorType>
fn get_default_name(&self) -> Result<String>
Object Safety§
This trait is not object safe.