pub trait CUDA_CannyEdgeDetectorTraitConst: AlgorithmTraitConst {
    // Required method
    fn as_raw_CUDA_CannyEdgeDetector(&self) -> *const c_void;

    // Provided methods
    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

Required Methods§

Provided Methods§

Implementors§