pub trait AKAZETrait: AKAZETraitConst + Feature2DTrait {
// Required method
fn as_raw_mut_AKAZE(&mut self) -> *mut c_void;
// Provided methods
fn set_descriptor_type(&mut self, dtype: AKAZE_DescriptorType) -> Result<()> { ... }
fn set_descriptor_size(&mut self, dsize: i32) -> Result<()> { ... }
fn set_descriptor_channels(&mut self, dch: i32) -> Result<()> { ... }
fn set_threshold(&mut self, threshold: f64) -> Result<()> { ... }
fn set_n_octaves(&mut self, octaves: i32) -> Result<()> { ... }
fn set_n_octave_layers(&mut self, octave_layers: i32) -> Result<()> { ... }
fn set_diffusivity(&mut self, diff: KAZE_DiffusivityType) -> Result<()> { ... }
fn set_max_points(&mut self, max_points: i32) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::features2d::AKAZE
Required Methods§
fn as_raw_mut_AKAZE(&mut self) -> *mut c_void
Provided Methods§
fn set_descriptor_type(&mut self, dtype: AKAZE_DescriptorType) -> Result<()>
fn set_descriptor_size(&mut self, dsize: i32) -> Result<()>
fn set_descriptor_channels(&mut self, dch: i32) -> Result<()>
fn set_threshold(&mut self, threshold: f64) -> Result<()>
fn set_n_octaves(&mut self, octaves: i32) -> Result<()>
fn set_n_octave_layers(&mut self, octave_layers: i32) -> Result<()>
fn set_diffusivity(&mut self, diff: KAZE_DiffusivityType) -> Result<()>
fn set_max_points(&mut self, max_points: i32) -> Result<()>
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.