pub trait SURFTrait: Feature2DTrait + SURFTraitConst {
// Required method
fn as_raw_mut_SURF(&mut self) -> *mut c_void;
// Provided methods
fn set_hessian_threshold(&mut self, hessian_threshold: f64) -> Result<()> { ... }
fn set_n_octaves(&mut self, n_octaves: i32) -> Result<()> { ... }
fn set_n_octave_layers(&mut self, n_octave_layers: i32) -> Result<()> { ... }
fn set_extended(&mut self, extended: bool) -> Result<()> { ... }
fn set_upright(&mut self, upright: bool) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::xfeatures2d::SURF
Required Methods§
fn as_raw_mut_SURF(&mut self) -> *mut c_void
Provided Methods§
fn set_hessian_threshold(&mut self, hessian_threshold: f64) -> Result<()>
fn set_n_octaves(&mut self, n_octaves: i32) -> Result<()>
fn set_n_octave_layers(&mut self, n_octave_layers: i32) -> Result<()>
fn set_extended(&mut self, extended: bool) -> Result<()>
fn set_upright(&mut self, upright: bool) -> Result<()>
Object Safety§
This trait is not object safe.