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.
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.