pub trait BinaryDescriptor_ParamsTraitConst {
    fn as_raw_BinaryDescriptor_Params(&self) -> *const c_void;

    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 FileStorage) -> Result<()> { ... }
}
Expand description

List of BinaryDescriptor parameters:

Required Methods

Provided Methods

the number of image octaves (default = 1)

the width of band; (default: 7)

image’s reduction ratio in construction of Gaussian pyramids

store parameters to a FileStorage object (struct function)

Implementors