gpt4 book ai didi

python - 使用 python 和 PIL 模块导入 PPM 图像

转载 作者:行者123 更新时间:2023-12-05 08:15:42 25 4
gpt4 key购买 nike

我需要一种方法来读取行并将像素信息提取到某种结构中,以便我可以使用 putpixel 函数创建基于 ppm p3 文件的图像。

我正在使用 Python 图像库 (PIL),我想打开 PPM 图像并将其作为图像显示在屏幕上。

我怎样才能只使用 PIL 来做到这一点?

这是我的 ppm 图像。这只是我创建的 7x1 图像。

P3
# size 7x1
7 1
255
0
0
0
201
24
24
24
201
45
24
54
201
201
24
182
24
201
178
104
59
14

最佳答案

如果您喜欢使用 np.array 对象,只需这样做:

>>> from scipy.misc import imread
>>> img = imread(path_to_ppm_file)
>>> img.shape
>>> (234, 555, 3)

关于python - 使用 python 和 PIL 模块导入 PPM 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4101576/

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