如何在Python中将一维图像数组转换为PIL图像

如何在Python中将一维图像数组转换为PIL图像,第1张

如何在Python中将一维图像数组转换为PIL图像

您可以使用以下方法将NumPy数组转换为PIL图像

Image.fromarray

import numpy as npfrom PIL import Imagearr = np.random.randint(255, size=(28*28))img = Image.fromarray(arr.reshape(28,28), 'L')

L
模式表示阵列值代表亮度。结果将是灰度图像。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5663733.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存