Trait opencv::features2d::FastFeatureDetector [−][src]
Wrapping class for feature detection using the FAST method. :
Required methods
fn as_raw_FastFeatureDetector(&self) -> *const c_void[src]
fn as_raw_mut_FastFeatureDetector(&mut self) -> *mut c_void[src]
Provided methods
fn set_threshold(&mut self, threshold: i32) -> Result<()>[src]
fn get_threshold(&self) -> Result<i32>[src]
fn set_nonmax_suppression(&mut self, f: bool) -> Result<()>[src]
fn get_nonmax_suppression(&self) -> Result<bool>[src]
fn set_type(&mut self, typ: FastFeatureDetector_DetectorType) -> Result<()>[src]
fn get_type(&self) -> Result<FastFeatureDetector_DetectorType>[src]
fn get_default_name(&self) -> Result<String>[src]
Implementations
impl dyn FastFeatureDetector + '_[src]
pub fn create(
threshold: i32,
nonmax_suppression: bool,
typ: FastFeatureDetector_DetectorType
) -> Result<Ptr<dyn FastFeatureDetector>>[src]
threshold: i32,
nonmax_suppression: bool,
typ: FastFeatureDetector_DetectorType
) -> Result<Ptr<dyn FastFeatureDetector>>
C++ default parameters
- threshold: 10
- nonmax_suppression: true
- typ: FastFeatureDetector::TYPE_9_16