CLAHETraitConst

Trait CLAHETraitConst 

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

    // Provided methods
    fn get_clip_limit(&self) -> Result<f64> { ... }
    fn get_tiles_grid_size(&self) -> Result<Size> { ... }
}
Expand description

Constant methods for crate::imgproc::CLAHE

Required Methods§

Provided Methods§

Source

fn get_clip_limit(&self) -> Result<f64>

Returns threshold value for contrast limiting.

Source

fn get_tiles_grid_size(&self) -> Result<Size>

Returns Size defines the number of tiles in row and column.

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§