Grayscale

class paddle.vision.transforms. Grayscale ( num_output_channels=1, keys=None ) [源代码]

将图像转换为灰度。

参数

  • num_output_channels (int,可选) - 输出图像的通道数,参数值为1或3。默认值:1。

  • keys (list[str]|tuple[str], optional) - 与 BaseTransform 定义一致。默认值: None。

返回

PIL.Image 或 numpy.ndarray,输入图像的灰度版本。

  • 如果 output_channels == 1 : 返回一个单通道图像。

  • 如果 output_channels == 3 : 返回一个3通道图像,其中RGB三个通道值一样。

代码示例

  1. import numpy as np
  2. from PIL import Image
  3. from paddle.vision.transforms import Grayscale
  4. transform = Grayscale()
  5. fake_img = Image.fromarray((np.random.rand(224, 224, 3) * 255.).astype(np.uint8))
  6. fake_img = transform(fake_img)
  7. print(np.array(fake_img).shape)