mindspore.dataset.vision.py_transforms.RandomHorizontalFlip
- class mindspore.dataset.vision.py_transforms.RandomHorizontalFlip(prob=0.5)[source]
Randomly flip the input image horizontally with a given probability.
- Parameters
prob (float, optional) – Probability of the image to be horizontally flipped (default=0.5).
- Raises
TypeError – If prob is not of type float.
ValueError – If prob is not in range [0, 1].
RuntimeError – If given tensor shape is not <H, W> or <H, W, C>.
- Supported Platforms:
CPU
Examples
>>> from mindspore.dataset.transforms.py_transforms import Compose >>> transforms_list = Compose([py_vision.Decode(), ... py_vision.RandomHorizontalFlip(0.5), ... py_vision.ToTensor()]) >>> # apply the transform to dataset through map function >>> image_folder_dataset = image_folder_dataset.map(operations=transforms_list, ... input_columns="image")