gpt4 book ai didi

python - 如何将 RGBA 元组的二维矩阵转换为 PIL 图像?

转载 作者:行者123 更新时间:2023-12-05 07:03:34 24 4
gpt4 key购买 nike

假设我有图像 img 内容:

[[(255, 255, 255, 255), (0, 0, 0, 255), (0, 0, 0, 255), (0, 0, 0, 255)],
[(0, 0, 0, 255), (255, 255, 255, 255), (0, 0, 0, 255), (0, 0, 0, 255)],
[(0, 0, 0, 255), (0, 0, 0, 255), (255, 255, 255, 255), (0, 0, 0, 255)],
[(0, 0, 0, 255), (0, 0, 0, 255), (0, 0, 0, 255), (255, 255, 255, 255)]]

有什么方法可以从中制作 PIL Image 吗?

我尝试了 Image.fromarray(np.asarray(img)) 并收到以下错误:

TypeError: Cannot handle this data type: (1, 1, 4), <i4

我该如何解决?还有没有使用 numpy 模块的解决方案吗?提前致谢。

最佳答案

我想你想要这个(来自 the doc 的 self 解释):

from PIL import Image

arr = np.array(img)
PIL_image = Image.frombuffer('RGBA',(arr.shape[0],arr.shape[1]),np.uint8(arr.reshape(arr.shape[0]*arr.shape[1],arr.shape[2])),'raw','RGBA',0,1)

关于python - 如何将 RGBA 元组的二维矩阵转换为 PIL 图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63164017/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com