Trait opencv::hub_prelude::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§
fn as_raw_CLAHE(&self) -> *const c_void
Provided Methods§
sourcefn get_clip_limit(&self) -> Result<f64>
fn get_clip_limit(&self) -> Result<f64>
Returns threshold value for contrast limiting.
sourcefn get_tiles_grid_size(&self) -> Result<Size>
fn get_tiles_grid_size(&self) -> Result<Size>
Returns Size defines the number of tiles in row and column.