Trait GFTTDetectorTraitConst

Source
pub trait GFTTDetectorTraitConst: Feature2DTraitConst {
    // Required method
    fn as_raw_GFTTDetector(&self) -> *const c_void;

    // Provided methods
    fn get_max_features(&self) -> Result<i32> { ... }
    fn get_quality_level(&self) -> Result<f64> { ... }
    fn get_min_distance(&self) -> Result<f64> { ... }
    fn get_block_size(&self) -> Result<i32> { ... }
    fn get_harris_detector(&self) -> Result<bool> { ... }
    fn get_k(&self) -> Result<f64> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Constant methods for crate::features2d::GFTTDetector

Required Methods§

Provided Methods§

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§