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

    // Provided methods
    fn get_rho(&self) -> Result<f32> { ... }
    fn get_theta(&self) -> Result<f32> { ... }
    fn get_threshold(&self) -> Result<i32> { ... }
    fn get_do_sort(&self) -> Result<bool> { ... }
    fn get_max_lines(&self) -> Result<i32> { ... }
}
Expand description

Required Methods§

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§