pub fn adjust_contrast<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
images: O0,
contrast_factor: O1,
min_value: O2,
max_value: O3,
scope: &mut Scope,
) -> Result<Operation>
Expand description
Shorthand for AdjustContrast::new().build(images, contrast_factor, min_value, max_value, scope)
.