Trait BinaryDescriptor_ParamsTraitConst

Source
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

Required Methods§

Provided Methods§

Source

fn num_of_octave_(&self) -> i32

the number of image octaves (default = 1)

Source

fn width_of_band_(&self) -> i32

the width of band; (default: 7)

Source

fn reduction_ratio(&self) -> i32

image’s reduction ratio in construction of Gaussian pyramids

Source

fn ksize_(&self) -> i32

Source

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.

Implementors§