gpt4 book ai didi

python - 如何在 python 中生成每个像素都是随机颜色的图像

转载 作者:行者123 更新时间:2023-12-02 04:36:00 26 4
gpt4 key购买 nike

我正在尝试为每个像素制作一个具有随机颜色的图像,然后打开一个窗口来查看该图像。

import PIL, random
import matplotlib.pyplot as plt
import os.path
import PIL.ImageDraw
from PIL import Image, ImageDraw, ImageFilter


im = Image.new("RGB", (300,300))

for r in range(0,300):
for c in range(0,300):
re = random.randint(0, 255)
gr = random.randint(0, 255)
bl = random.randint(0, 255)
im[r][c]=[re,gr,bl]
im.show()

14 bl = random.randint(0, 255)
---> 15 im[r][c]=[re,gr,bl]
16 im.show()
TypeError: 'Image' object does not support indexing

最佳答案

您可以使用numpy.random.randint在一行中有效地组装所需的数组。

import numpy as np
from PIL import Image

# numpy.random.randint returns an array of random integers
# from low (inclusive) to high (exclusive). i.e. low <= value < high

pixel_data = np.random.randint(
low=0,
high=256,
size=(300, 300, 3),
dtype=np.uint8
)

image = Image.fromarray(pixel_data)
image.show()

输出:

enter image description here

关于python - 如何在 python 中生成每个像素都是随机颜色的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59056216/

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