pytorch中transforms(预处理)常用的方法
转载自:(18条消息) pytorch中transform常用的几个方法_木瓜子的博客-CSDN博客_pytorch transform
- 一、 裁剪——Crop
- 二、翻转和旋转——Flip and Rotation
- 三、图像变换
-
- 9.resize:transforms.Resize
- 10.标准化:transforms.Normalize
- 11.转为tensor:transforms.ToTensor
- 12.填充:transforms.Pad
- 13.修改亮度、对比度和饱和度:transforms.ColorJitter
- 14.转灰度图:transforms.Grayscale
- 15.线性变换:transforms.LinearTransformation()
- 16.仿射变换:transforms.RandomAffine
- 17.依概率p转为灰度图:transforms.RandomGrayscale
- 18.将数据转换为PILImage:transforms.ToPILImage
- 19.transforms.Lambda
- 四、对transforms操作,使数据增强更灵活