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§
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>
Object Safety§
This trait is not object safe.