gpt4 book ai didi

python - 如何将彩色像素更改为白色像素

转载 作者:行者123 更新时间:2023-11-30 21:58:19 25 4
gpt4 key购买 nike

我有一个彩色图像作为输入,我想检查方差的颜色信息(如 [0, 0, 0] - [255, 255, 255])。因此,如果方差超过某个点,我想将其更改为白色。

所以类似的事情:

for y in range(img.shape[0]):
for x in range(img.shape[1]):
if numpy.var(img[y][x]) > 1000:
img[y][x] = [255, 255, 255]

但我需要良好的表现。所以我尝试使用 numpy.where() 函数,但找不到解决方案。

最佳答案

您可以使用 numpy 的索引来实现此目的:

import numpy as np
import matplotlib.pyplot as plt

img = (np.random.rand(100,100,3)*255).astype(int)

img2 = np.copy(img)
img2[np.var(img, 2)>1000] = np.array([255, 255, 255])

fig, ax = plt.subplots(ncols=2)

ax[0].imshow(img)
ax[1].imshow(img2)

np.var的第二个参数是要计算方差的轴;在本例中是颜色。

结果:

enter image description here

关于python - 如何将彩色像素更改为白色像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54958988/

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