pub trait BinaryDescriptor_ParamsTraitConst {
// Required method
fn as_raw_BinaryDescriptor_Params(&self) -> *const c_void;
// Provided methods
fn num_of_octave_(&self) -> i32 { ... }
fn width_of_band_(&self) -> i32 { ... }
fn reduction_ratio(&self) -> i32 { ... }
fn ksize_(&self) -> i32 { ... }
fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()> { ... }
}
Expand description
Constant methods for crate::line_descriptor::BinaryDescriptor_Params
Required Methods§
fn as_raw_BinaryDescriptor_Params(&self) -> *const c_void
Provided Methods§
Sourcefn num_of_octave_(&self) -> i32
fn num_of_octave_(&self) -> i32
the number of image octaves (default = 1)
Sourcefn width_of_band_(&self) -> i32
fn width_of_band_(&self) -> i32
the width of band; (default: 7)
Sourcefn reduction_ratio(&self) -> i32
fn reduction_ratio(&self) -> i32
image’s reduction ratio in construction of Gaussian pyramids
fn ksize_(&self) -> i32
Sourcefn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>
fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>
store parameters to a FileStorage object (struct function)
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.