gpt4 book ai didi

python - 如何将两个图像与枕头组合(逻辑或)?

转载 作者:行者123 更新时间:2023-11-28 19:17:45 27 4
gpt4 key购买 nike

我在枕头中有两个二进制黑白图像(模式=1)。我想创建一个相同大小的新图像,它只是两者的二进制加法。换句话说,我想对每个像素进行逻辑 ORing。

我已经阅读文档一段时间了,但无法弄清楚这个看似简单的任务。有什么想法吗?

最佳答案

使用 ImageChops.add()方法:

PIL.ImageChops.add(image1, image2, scale=1.0, offset=0)[source] Adds two images, dividing the result by scale and adding the offset. If omitted, scale defaults to 1.0, and offset to 0.0.

out = ((image1 + image2) / scale + offset)

Return type: Image

这将让您创建一个合成图像,看起来像是两个图像之间的 OR 运算。

关于python - 如何将两个图像与枕头组合(逻辑或)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31467748/

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