[][src]Trait opencv::line_descriptor::BinaryDescriptor_ParamsTrait

pub trait BinaryDescriptor_ParamsTrait {
    pub fn as_raw_BinaryDescriptor_Params(&self) -> *const c_void;
pub fn as_raw_mut_BinaryDescriptor_Params(&mut self) -> *mut c_void; pub fn num_of_octave_(&self) -> i32 { ... }
pub fn set_num_of_octave_(&mut self, val: i32) { ... }
pub fn width_of_band_(&self) -> i32 { ... }
pub fn set_width_of_band_(&mut self, val: i32) { ... }
pub fn reduction_ratio(&self) -> i32 { ... }
pub fn set_reduction_ratio(&mut self, val: i32) { ... }
pub fn ksize_(&self) -> i32 { ... }
pub fn set_ksize_(&mut self, val: i32) { ... }
pub fn read(&mut self, fn_: &FileNode) -> Result<()> { ... }
pub fn write(&self, fs: &mut FileStorage) -> Result<()> { ... } }

List of BinaryDescriptor parameters:

Required methods

Loading content...

Provided methods

pub fn num_of_octave_(&self) -> i32[src]

the number of image octaves (default = 1)

pub fn set_num_of_octave_(&mut self, val: i32)[src]

the number of image octaves (default = 1)

pub fn width_of_band_(&self) -> i32[src]

the width of band; (default: 7)

pub fn set_width_of_band_(&mut self, val: i32)[src]

the width of band; (default: 7)

pub fn reduction_ratio(&self) -> i32[src]

image's reduction ratio in construction of Gaussian pyramids

pub fn set_reduction_ratio(&mut self, val: i32)[src]

image's reduction ratio in construction of Gaussian pyramids

pub fn ksize_(&self) -> i32[src]

pub fn set_ksize_(&mut self, val: i32)[src]

pub fn read(&mut self, fn_: &FileNode) -> Result<()>[src]

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

pub fn write(&self, fs: &mut FileStorage) -> Result<()>[src]

store parameters to a FileStorage object (struct function)

Loading content...

Implementors

Loading content...