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

pub trait BRISKTrait: Feature2DTrait {
    fn as_raw_BRISK(&self) -> *const c_void;
fn as_raw_mut_BRISK(&mut self) -> *mut c_void; fn get_default_name(&self) -> Result<String> { ... }
fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
fn get_threshold(&self) -> Result<i32> { ... }
fn set_octaves(&mut self, octaves: i32) -> Result<()> { ... }
fn get_octaves(&self) -> Result<i32> { ... } }
Expand description

Class implementing the BRISK keypoint detector and descriptor extractor, described in LCS11 .

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