尝试了网上无数种方法后,终于解决,贴上代码
from imageio import imwrite,imread
import numpy as np
from PIL import Image
img=imread('google.jpg')
print(img.dtype,img.shape)
img_tinted=img*[1,1/0.95,1/0.9]
img_tinted = np.array(Image.fromarray(np.uint8(img_tinted)).resize((300,300)))
imwrite('google.jpg', img_tinted)
起因是scipy自1.3.0后移除了imread
、imsave
、imresize
等方法
这里imread
、imsave
使用imageio
中的imwrite
、imread
代替。
imresize
使用np.array(Image.fromarray(np.uint8(img_tinted)).resize())
代替,其中img_tinted
是np.ndarray
类型的三维数组