pub trait BinaryDescriptor_ParamsTrait: BinaryDescriptor_ParamsTraitConst {
    // Required method
    fn as_raw_mut_BinaryDescriptor_Params(&mut self) -> *mut c_void;

    // Provided methods
    fn set_num_of_octave_(&mut self, val: i32) { ... }
    fn set_width_of_band_(&mut self, val: i32) { ... }
    fn set_reduction_ratio(&mut self, val: i32) { ... }
    fn set_ksize_(&mut self, val: i32) { ... }
    fn read(&mut self, fn_: &FileNode) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn set_num_of_octave_(&mut self, val: i32)

the number of image octaves (default = 1)

source

fn set_width_of_band_(&mut self, val: i32)

the width of band; (default: 7)

source

fn set_reduction_ratio(&mut self, val: i32)

image’s reduction ratio in construction of Gaussian pyramids

source

fn set_ksize_(&mut self, val: i32)

source

fn read(&mut self, fn_: &FileNode) -> Result<()>

read parameters from a FileNode object and store them (struct function)

Implementors§