Trait opencv::features2d::BRISKTrait[][src]

pub trait BRISKTrait: BRISKTraitConst + Feature2DTrait {
    fn as_raw_mut_BRISK(&mut self) -> *mut c_void;

    fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
fn set_octaves(&mut self, octaves: i32) -> Result<()> { ... } }

Required methods

Provided methods

Set detection threshold.

Parameters
  • threshold: AGAST detection threshold score.

Set detection octaves.

Parameters
  • octaves: detection octaves. Use 0 to do single scale.

Implementors