[][src]Trait opencv::cudafeatures2d::CUDA_FastFeatureDetector

pub trait CUDA_FastFeatureDetector: CUDA_Feature2DAsync {
    pub fn as_raw_CUDA_FastFeatureDetector(&self) -> *const c_void;
pub fn as_raw_mut_CUDA_FastFeatureDetector(&mut self) -> *mut c_void; pub fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
pub fn set_max_num_points(&mut self, max_npoints: i32) -> Result<()> { ... }
pub fn get_max_num_points(&self) -> Result<i32> { ... } }

Wrapping class for feature detection using the FAST method.

Required methods

Loading content...

Provided methods

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

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

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

Loading content...

Implementations

impl<'_> dyn CUDA_FastFeatureDetector + '_[src]

pub const LOCATION_ROW: i32[src]

pub const RESPONSE_ROW: i32[src]

pub const ROWS_COUNT: i32[src]

pub const FEATURE_SIZE: i32[src]

pub fn create(
    threshold: i32,
    nonmax_suppression: bool,
    typ: i32,
    max_npoints: i32
) -> Result<Ptr<dyn CUDA_FastFeatureDetector>>
[src]

C++ default parameters

  • threshold: 10
  • nonmax_suppression: true
  • typ: cv::FastFeatureDetector::TYPE_9_16
  • max_npoints: 5000

Implementors

Loading content...