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

    // Provided methods
    fn get_default_name(&self) -> Result<String> { ... }
    fn get_threshold(&self) -> Result<i32> { ... }
    fn get_octaves(&self) -> Result<i32> { ... }
    fn get_pattern_scale(&self) -> Result<f32> { ... }
}
Expand description

Constant methods for crate::features2d::BRISK

Required Methods§

Provided Methods§

Implementors§