mindspore.dataset.vision.Rescale
- class mindspore.dataset.vision.Rescale(rescale, shift)[source]
Rescale the input image with the given rescale and shift. This operation will rescale the input image with: output = image * rescale + shift.
Note
This operation supports running on Ascend or GPU platforms by Offload.
- Parameters
- Raises
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore.dataset as ds >>> import mindspore.dataset.vision as vision >>> >>> image_folder_dataset = ds.ImageFolderDataset("/path/to/image_folder_dataset_directory") >>> transforms_list = [vision.Decode(), vision.Rescale(1.0 / 255.0, -1.0)] >>> image_folder_dataset = image_folder_dataset.map(operations=transforms_list, ... input_columns=["image"])
- Tutorial Examples: