pub trait FREAKTraitConst: Feature2DTraitConst {
// Required method
fn as_raw_FREAK(&self) -> *const c_void;
// Provided methods
fn get_orientation_normalized(&self) -> Result<bool> { ... }
fn get_scale_normalized(&self) -> Result<bool> { ... }
fn get_pattern_scale(&self) -> Result<f64> { ... }
fn get_n_octaves(&self) -> Result<i32> { ... }
fn get_default_name(&self) -> Result<String> { ... }
}
Expand description
Constant methods for crate::xfeatures2d::FREAK
Required Methods§
fn as_raw_FREAK(&self) -> *const c_void
Provided Methods§
fn get_orientation_normalized(&self) -> Result<bool>
fn get_scale_normalized(&self) -> Result<bool>
fn get_pattern_scale(&self) -> Result<f64>
fn get_n_octaves(&self) -> Result<i32>
fn get_default_name(&self) -> Result<String>
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.