#读取
img = Image.open("地址")
pil = transforms.PILToTensor() # 这里不一样
img = pil(img)
#保存
image = img.cpu().clone()
image = image.squeeze(0)
image = unloader(image)
image.save('E:/test0507' + '/' + '图片名称')
PIL和tensor转换,PIL读取和保存
于 2022-05-09 14:20:02 首次发布