pub trait SURFConst: Feature2DTraitConst {
    // Required method
    fn as_raw_SURF(&self) -> *const c_void;

    // Provided methods
    fn get_hessian_threshold(&self) -> Result<f64> { ... }
    fn get_n_octaves(&self) -> Result<i32> { ... }
    fn get_n_octave_layers(&self) -> Result<i32> { ... }
    fn get_extended(&self) -> Result<bool> { ... }
    fn get_upright(&self) -> Result<bool> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Constant methods for crate::xfeatures2d::SURF

Required Methods§

Provided Methods§

Implementors§

source§

impl SURFConst for Ptr<dyn SURF>