pub trait CUDA_CannyEdgeDetectorConst: AlgorithmTraitConst {
    fn as_raw_CUDA_CannyEdgeDetector(&self) -> *const c_void;

    fn get_low_threshold(&self) -> Result<f64> { ... }
    fn get_high_threshold(&self) -> Result<f64> { ... }
    fn get_apperture_size(&self) -> Result<i32> { ... }
    fn get_l2_gradient(&self) -> Result<bool> { ... }
}
Expand description

Base class for Canny Edge Detector. :

Required Methods

Provided Methods

Implementors