Trait AKAZETraitConst

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

    // Provided methods
    fn get_descriptor_type(&self) -> Result<AKAZE_DescriptorType> { ... }
    fn get_descriptor_size(&self) -> Result<i32> { ... }
    fn get_descriptor_channels(&self) -> Result<i32> { ... }
    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> { ... }
    fn get_max_points(&self) -> Result<i32> { ... }
}
Expand description

Constant methods for crate::features2d::AKAZE

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§