RandomAutocontrast¶ class torchvision.transforms.RandomAutocontrast(p=0.5)[source]¶ 以给定概率随机自动对比度给定图像的像素。如果图像为 torch 张量,则它应该具有 […, 1 或 3, H, W] 形状,其中 … 表示任意数量的前导维度。如果 img 是 PIL Image,则它应该处于“L”或“RGB”模式。 参数: p (float) – 图像被自动对比度的概率。默认值为 0.5 使用 RandomAutocontrast 的示例 变换的说明 变换的说明 forward(img)[source]¶ 参数: img (PIL Image 或 Tensor) – 要自动对比度的图像。 返回值: 随机自动对比度的图像。 返回类型: PIL Image 或 Tensor