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.

Implementors§