mindspore.dataset.vision.RandomInvert

class mindspore.dataset.vision.RandomInvert(prob=0.5)[source]

Randomly invert the colors of image with a given probability.

Parameters

prob (float, optional) – Probability of the image being inverted, which must be in range of [0.0, 1.0]. Default: 0.5.

Raises
Supported Platforms:

CPU

Examples

>>> transforms_list = [vision.Decode(), vision.RandomInvert(0.5)]
>>> image_folder_dataset = image_folder_dataset.map(operations=transforms_list,
...                                                 input_columns=["image"])