pub trait CLAHEConst: AlgorithmTraitConst {
    fn as_raw_CLAHE(&self) -> *const c_void;

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

Base class for Contrast Limited Adaptive Histogram Equalization.

Required Methods§

Provided Methods§

Returns threshold value for contrast limiting.

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

Implementors§