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

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

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

Required methods

Loading content...

Provided methods

pub fn get_default_name(&self) -> Result<String>[src]

pub fn set_threshold(&mut self, threshold: i32) -> Result<()>[src]

Set detection threshold.

Parameters

  • threshold: AGAST detection threshold score.

pub fn get_threshold(&self) -> Result<i32>[src]

pub fn set_octaves(&mut self, octaves: i32) -> Result<()>[src]

Set detection octaves.

Parameters

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

pub fn get_octaves(&self) -> Result<i32>[src]

Loading content...

Implementors

impl BRISKTrait for BRISK[src]

impl BRISKTrait for PtrOfBRISK[src]

Loading content...