快捷方式

to_grayscale

torchvision.transforms.functional.to_grayscale(img, num_output_channels=1)[源代码]

将任何模式(RGB、HSV、LAB 等)的 PIL 图像转换为图像的灰度版本。此转换不支持 torch 张量。

参数:
  • img (PIL Image) – 要转换为灰度的 PIL 图像。

  • num_output_channels (int) – 输出图像的通道数。值可以是 1 或 3。默认为 1。

返回值:

图像的灰度版本。

  • 如果 num_output_channels = 1:返回的图像为单通道

  • 如果 num_output_channels = 3:返回的图像为 3 通道,其中 r = g = b

返回类型:

PIL Image

使用 to_grayscale 的示例

转换的说明

转换的说明

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并解答您的问题

查看资源