pub trait CUDA_FastFeatureDetector: CUDA_FastFeatureDetectorConst + CUDA_Feature2DAsync {
    fn as_raw_mut_CUDA_FastFeatureDetector(&mut self) -> *mut c_void;

    fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
    fn set_max_num_points(&mut self, max_npoints: i32) -> Result<()> { ... }
}

Required Methods

Provided Methods

Implementations

C++ default parameters
  • threshold: 10
  • nonmax_suppression: true
  • typ: cv::FastFeatureDetector::TYPE_9_16
  • max_npoints: 5000

Implementors