#P9-P13
Transforms的使用
transforms在计算机视觉工具包torchvision下。torchvision.transforms : 常用的图像预处理方法,提高泛化能力。
crtl+/ 注释代码
PIL和Opencv图像处理差异
1 PIL(RGB)
Image.open 方法打开的图片类型为PIL Image, 值为0-255,尺寸为 W * H * C。
通过img=np.array(img)转为numpy数组后,尺寸为 H * W * C。
2 (python版)OpenCV(BGR)
cv2.imread 方式打开的图片类型为np数组, 值为0-255,尺寸为 H * W * C。
常见的Transforms
一些小方法:关注输入和输出类型 不知返回值时:print
多看官方文档 print(type())
关注方法所需参数 debug