gpt4 book ai didi

python - PIL : Composite/merge two images as "Dodge"

转载 作者:太空宇宙 更新时间:2023-11-03 13:24:16 24 4
gpt4 key购买 nike

我如何使用 PIL 实现将“闪避”模式下的图层与另一图层合并(如在 Gimp/Photoshop 中所做的那样)的等价物?

我有我的原始图像以及我想用作要合并的层的图像,但我不知道如何进行闪避合并/合成:

from PIL import Image, ImageFilter, ImageOps

img = Image.open(fname)

img_blur = img.filter(ImageFilter.BLUR)
img_blur_invert = ImageOps.invert(img_blur)

# Now "dodge" merge img_blur_invert on top of img

最佳答案

可能有一种纯 PIL 方法可以做到这一点;我不知道。但是,如果没有,您可以使用 numpy 来实现:

import numpy as np
import Image
import ImageFilter

def dodge(front,back):
# The formula comes from http://www.adobe.com/devnet/pdf/pdfs/blend_modes.pdf
result=back*256.0/(256.0-front)
result[result>255]=255
result[front==255]=255
return result.astype('uint8')

img = Image.open(fname,'r').convert('RGB')
arr = np.asarray(img)
img_blur = img.filter(ImageFilter.BLUR)
blur = np.asarray(img_blur)
result=dodge(front=blur, back=arr)
result = Image.fromarray(result, 'RGB')
result.show()

关于python - PIL : Composite/merge two images as "Dodge",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3312606/

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