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
fn as_raw_BinaryDescriptor_Params(&self) -> *const c_void
Provided Methods
sourcefn num_of_octave_(&self) -> i32
fn num_of_octave_(&self) -> i32
the number of image octaves (default = 1)
sourcefn width_of_band_(&self) -> i32
fn width_of_band_(&self) -> i32
the width of band; (default: 7)
sourcefn reduction_ratio(&self) -> i32
fn reduction_ratio(&self) -> i32
image’s reduction ratio in construction of Gaussian pyramids
fn ksize_(&self) -> i32
sourcefn write(&self, fs: &mut FileStorage) -> Result<()>
fn write(&self, fs: &mut FileStorage) -> Result<()>
store parameters to a FileStorage object (struct function)