Trait opencv::prelude::GFTTDetectorConst[][src]

pub trait GFTTDetectorConst: Feature2DTraitConst {
    fn as_raw_GFTTDetector(&self) -> *const c_void;

    fn get_max_features(&self) -> Result<i32> { ... }
fn get_quality_level(&self) -> Result<f64> { ... }
fn get_min_distance(&self) -> Result<f64> { ... }
fn get_block_size(&self) -> Result<i32> { ... }
fn get_harris_detector(&self) -> Result<bool> { ... }
fn get_k(&self) -> Result<f64> { ... }
fn get_default_name(&self) -> Result<String> { ... } }
Expand description

Wrapping class for feature detection using the goodFeaturesToTrack function. :

Required methods

Provided methods

Implementors