Trait opencv::prelude::BinaryDescriptor_ParamsTrait[][src]

pub trait BinaryDescriptor_ParamsTrait {
    fn as_raw_BinaryDescriptor_Params(&self) -> *const c_void;
fn as_raw_mut_BinaryDescriptor_Params(&mut self) -> *mut c_void; fn num_of_octave_(&self) -> i32 { ... }
fn set_num_of_octave_(&mut self, val: i32) { ... }
fn width_of_band_(&self) -> i32 { ... }
fn set_width_of_band_(&mut self, val: i32) { ... }
fn reduction_ratio(&self) -> i32 { ... }
fn set_reduction_ratio(&mut self, val: i32) { ... }
fn ksize_(&self) -> i32 { ... }
fn set_ksize_(&mut self, val: i32) { ... }
fn read(&mut self, fn_: &FileNode) -> Result<()> { ... }
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 number of image octaves (default = 1)

the width of band; (default: 7)

the width of band; (default: 7)

image’s reduction ratio in construction of Gaussian pyramids

image’s reduction ratio in construction of Gaussian pyramids

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

store parameters to a FileStorage object (struct function)

Implementors