gpt4 book ai didi

python - 从 RGB 列表创建图像 python PIL

转载 作者:行者123 更新时间:2023-12-01 07:20:23 25 4
gpt4 key购买 nike

我有一个表示 360x640 像素图像的 RGB 值的列表,该图像列表采用以下格式 img_list[y_pix][x_pix][R,G,B]。因此,对于左上角和右下角有白色像素、反向有黑色像素的 2x2pixel,我的列表将是 [[[255,255,255],[0,0,0]][[0,0,0] ,[255,255,255]]]

我尝试将其作为数组传递给 PIL

image_array = np.asarray(frame_array)
img = PIL.Image.fromarray(image_array)

最佳答案

您需要指定 np.uint8 数据类型,以便 PIL 理解每个值都是 RGB 表示形式中的一个字节。

import PIL
import numpy as np

l = [[[255, 255, 255], [0, 0, 0]], [[0, 0, 0], [255, 255, 255]]]
image_array = np.array(l, dtype=np.uint8)
img = PIL.Image.fromarray(image_array)
img.show()

输出(放大):

Output

关于python - 从 RGB 列表创建图像 python PIL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57729087/

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