mindspore.dataset.vision.AdjustGamma
- class mindspore.dataset.vision.AdjustGamma(gamma, gain=1)[源代码]
Apply gamma correction on input image. Input image is expected to be in […, H, W, C] or [H, W] format.
\[I_{\text{out}} = 255 \times \text{gain} \times \left(\frac{I_{\text{in}}}{255}\right)^{\gamma}\]See Gamma Correction for more details.
- Parameters
- Raises
TypeError – If gain is not of type float.
TypeError – If gamma is not of type float.
ValueError – If gamma is less than 0.
RuntimeError – If given tensor shape is not <H, W> or <…, H, W, C>.
- Supported Platforms:
CPU
Examples
>>> transforms_list = [vision.Decode(), vision.AdjustGamma(gamma=10.0, gain=1.0)] >>> image_folder_dataset = image_folder_dataset.map(operations=transforms_list, ... input_columns=["image"])