pub trait CUDA_FastFeatureDetectorTrait: CUDA_FastFeatureDetectorTraitConst + CUDA_Feature2DAsyncTrait {
// Required method
fn as_raw_mut_CUDA_FastFeatureDetector(&mut self) -> *mut c_void;
// Provided methods
fn set_threshold(&mut self, threshold: i32) -> Result<()> { ... }
fn set_max_num_points(&mut self, max_npoints: i32) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::cudafeatures2d::CUDA_FastFeatureDetector
Required Methods§
fn as_raw_mut_CUDA_FastFeatureDetector(&mut self) -> *mut c_void
Provided Methods§
fn set_threshold(&mut self, threshold: i32) -> Result<()>
fn set_max_num_points(&mut self, max_npoints: i32) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.