覆盖图像并在每个像素位置显示较亮的像素

时间:2018-09-18 21:54:45

标签: python image-processing python-imaging-library

我想将两个黑白图像与最终图像合并,以显示两个图像中每个像素位置的较亮/白色像素。我尝试了以下代码,但没有用。

background=Image.open('ABC.jpg').convert("RGBA")
overlay=Image.open('DEF.jpg').convert("RGBA")
background_width=1936
background_height=1863
background_width,background_height = background.size
overlay_resize= overlay.resize((background_width,background_height),Image.ANTIALIAS)
background.paste(overlay_resize, None, overlay_resize)
overlay=background.save("overlay.jpg")
fn=np.maximum(background,overlay)
fn1=PIL.Image.fromarray(fn)
plt.imshow(fnl)
plt.show()

我收到的错误消息是无法处理此数据类型。任何人都可以提供的任何帮助或建议都很好。

1 个答案:

答案 0 :(得分:1)

我认为您太过复杂了。您只需要读取两张图像并将它们设为灰度numpy阵列,然后在每个位置选择两个像素中的较亮的颜色即可。

所以从这两张图片开始:

enter image description here enter image description here

#!/usr/local/bin/python3

import numpy as np
from PIL import Image

# Open two input images and convert to greyscale numpy arrays
bg=np.array(Image.open('a.png').convert('L'))
fg=np.array(Image.open('b.png').convert('L'))

# Choose lighter pixel at each location
result=np.maximum(bg,fg)

# Save
Image.fromarray(result).save('result.png')

您将获得:

enter image description here

关键字::numpy,Python,图像,图像处理,撰写,混合,混合模式,变亮,更亮,Photoshop,等效,变暗,覆盖。