python如何将一组数组变成图像

python中将一组数组变为图像的方法:

1、使用scipy.misc将Numpy数组保存为图像

import scipy.misc
misc.imsave('out.jpg', image_array)

上面的scipy版本会标准化所有图像,以便min(数据)变成黑色,max(数据)变成白色。如果数据应该是精确的灰度级或准确的RGB通道,则解决方案为:

import scipy.misc
misc.toimage(image_array, cmin=0.0, cmax=...).save('outfile.jpg')

2、使用PIL库将数组保存为图像

from PIL import Image
im = Image.fromarray(A)
im.save("out.jpeg")

更多Python知识请关注云海天Python教程栏目。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何将一组数组变成图像