Trait GeneralizedHoughTraitConst

Source
pub trait GeneralizedHoughTraitConst: AlgorithmTraitConst {
    // Required method
    fn as_raw_GeneralizedHough(&self) -> *const c_void;

    // Provided methods
    fn get_canny_low_thresh(&self) -> Result<i32> { ... }
    fn get_canny_high_thresh(&self) -> Result<i32> { ... }
    fn get_min_dist(&self) -> Result<f64> { ... }
    fn get_dp(&self) -> Result<f64> { ... }
    fn get_max_buffer_size(&self) -> Result<i32> { ... }
}
Expand description

Constant methods for crate::imgproc::GeneralizedHough

Required Methods§

Provided Methods§

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.

Implementors§