pub trait KAZEConst: Feature2DTraitConst {
    fn as_raw_KAZE(&self) -> *const c_void;

    fn get_extended(&self) -> Result<bool> { ... }
    fn get_upright(&self) -> Result<bool> { ... }
    fn get_threshold(&self) -> Result<f64> { ... }
    fn get_n_octaves(&self) -> Result<i32> { ... }
    fn get_n_octave_layers(&self) -> Result<i32> { ... }
    fn get_diffusivity(&self) -> Result<KAZE_DiffusivityType> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Constant methods for crate::features2d::KAZE

Required Methods§

Provided Methods§

Implementors§