mindspore.dataset.vision.Rescale

class mindspore.dataset.vision.Rescale(rescale, shift)[源代码]

基于给定的缩放和平移因子调整图像的像素大小。输出图像的像素大小为:output = image * rescale + shift。

说明

此操作支持通过 Offload 在 Ascend 或 GPU 平台上运行。

参数:
  • rescale (float) - 缩放因子。

  • shift (float) - 平移因子。

异常:
  • TypeError - 当 rescale 的类型不为float。

  • TypeError - 当 shift 的类型不为float。

支持平台:

CPU Ascend GPU

样例:

>>> 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"])