posterize¶
- torchvision.transforms.functional.posterize(img: Tensor, bits: int) Tensor [源代码]¶
通过减少每个颜色通道的位数来对图像进行色调分离。
- 参数:
img (PIL Image 或 Tensor) – 要进行色调分离的图像。如果 img 是 torch Tensor,它应该为 torch.uint8 类型,并应为 […, 1 或 3, H, W] 格式,其中 … 表示它可以具有任意数量的前导维度。如果 img 是 PIL Image,它应该为“L”或“RGB”模式。
bits (int) – 每个通道保留的位数 (0-8)。
- 返回值:
色调分离后的图像。
- 返回值类型:
PIL Image 或 Tensor
使用
posterize
的示例变换的示例