gpt4 book ai didi

python - 如何从 numpy float32 数组创建图像?

转载 作者:太空宇宙 更新时间:2023-11-03 15:00:02 26 4
gpt4 key购买 nike

我有一个 numpy.ndarray 数组,其中包含 float32 的值。图片尺寸应为 226×226。我尝试使用 PIL.Image 创建图像,但出现错误。我读到 PIL.Image.fromarray 需要一个对象和模式,对于 float,我需要在尝试时使用 'F' 调用 fromarray .

这是我尝试做的:

from PIL import Image
img = Image.fromarray(slice56, mode='F')
#type(slice56) = <type 'numpy.ndarray'>
#slice56 = array([ 0., 0., 0., ..., 0., 0., 0.], dtype=float32)

我得到这个错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.6/site-packages/PIL/Image.py", line 1860, in fromarray
return frombuffer(mode, size, obj, "raw", mode, 0, 1)
File "/usr/lib64/python2.6/site-packages/PIL/Image.py", line 1805, in frombuffer
return apply(fromstring, (mode, size, data, decoder_name, args))
File "/usr/lib64/python2.6/site-packages/PIL/Image.py", line 1743, in fromstring
im = new(mode, size)
File "/usr/lib64/python2.6/site-packages/PIL/Image.py", line 1710, in new
return Image()._new(core.fill(mode, size, color))
TypeError: argument 2 must be sequence of length 2, not 1

任何人都可以提出一个想法如何去做吗?或者如何解决这个错误?

最佳答案

我同意 DavidG 的回答是从 numpy 数组绘制图像的快速解决方案。但是,如果您有充分的理由坚持使用 PIL.Image,那么最接近您已经完成的方法是这样的:

from PIL import Image
import numpy as np

slice56 = np.random.random((226, 226))

# convert values to 0 - 255 int8 format
formatted = (slice56 * 255 / np.max(slice56)).astype('uint8')
img = Image.fromarray(formatted)
img.show()

然后它会产生如下给定的随机数:

PIL Image

关于python - 如何从 numpy float32 数组创建图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38867869/

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