from PIL import Image
# 数组表示的一个图像images[i],转换成img_width,img_height尺寸的数组info
info = np.reshape(images[i], (img_width, img_height))
# 将info转成为uint8格式,否则报错"cannot convert this type"
image = Image.fromarray(np.uint8(info)).convert('L')
待转换的数组image[i]:
[ 70 80 82 ... 106 109 82]
转换后的图像:
网友评论