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
fn as_raw_BinaryDescriptor_Params(&self) -> *const c_void
fn as_raw_mut_BinaryDescriptor_Params(&mut self) -> *mut c_void
Provided methods
fn num_of_octave_(&self) -> i32
fn num_of_octave_(&self) -> i32
the number of image octaves (default = 1)
fn set_num_of_octave_(&mut self, val: i32)
fn set_num_of_octave_(&mut self, val: i32)
the number of image octaves (default = 1)
fn width_of_band_(&self) -> i32
fn width_of_band_(&self) -> i32
the width of band; (default: 7)
fn set_width_of_band_(&mut self, val: i32)
fn set_width_of_band_(&mut self, val: i32)
the width of band; (default: 7)
fn reduction_ratio(&self) -> i32
fn reduction_ratio(&self) -> i32
image’s reduction ratio in construction of Gaussian pyramids
fn set_reduction_ratio(&mut self, val: i32)
fn set_reduction_ratio(&mut self, val: i32)
image’s reduction ratio in construction of Gaussian pyramids
fn set_ksize_(&mut self, val: i32)
read parameters from a FileNode object and store them (struct function)
fn write(&self, fs: &mut FileStorage) -> Result<()>
fn write(&self, fs: &mut FileStorage) -> Result<()>
store parameters to a FileStorage object (struct function)