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

标签 python numpy python-imaging-library

我有一个 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/

相关文章:

opencv - 如何通过变换矩阵在python中执行图像变换操作(旋转、缩放、平移)

python - 有没有一种简单的方法可以在 Mac OS X Mavericks Python 2.7 上安装 Pillow?

python - 如果循环需要继续运行,如何停止循环中的打印语句重复打印?

python - ConfigParser - 打印 config.sections() 返回 []

python - 未找到安装工具

python-3.x - Python : How to turn an IMAGE into a STRING and back?

python - 在交互式 qsub 环境中使用 mpirun 激活虚拟环境

python - 如何将形状数组 n, 转换为 n,m

Scipy径向基函数(scipy.interpolate.rbf)中的Python MemoryError

python - python中不同维度数组的二维插值