autocontrast¶
- torchvision.transforms.functional.autocontrast(img: Tensor) Tensor [source]¶
通过重新映射每个通道的像素来最大化图像的对比度,使最暗的变为黑色,最亮的变为白色。
- 参数:
img (PIL 图像 或 Tensor) – 应用自动对比度的图像。如果 img 是 torch Tensor,则应为 […, 1 或 3, H, W] 格式,其中 … 表示它可以具有任意数量的前导维度。如果 img 是 PIL 图像,则应为 “L” 或 “RGB” 模式。
- 返回值:
已应用自动对比度的图像。
- 返回类型:
PIL 图像 或 Tensor
使用
autocontrast
的示例