我正在使用vips库来操作一些图像,特别是它的Lua绑定,lua-vips,我正试图找到一种在图像边缘做羽毛效果的方法。
这是我第一次尝试使用这个任务的库,我一直在看这个list of functions可用,但仍然不知道如何使用它。它不是复杂的形状,只是一个基本的矩形图像,其顶部和底部边缘应该与背景平滑地融合(另一个我正在使用vips_composite()的图像)。
假设存在“feather_edges”方法,它将类似于:
local bg = vips.Image.new_from_file("foo.png")
local img = vips.Image.new_from_file("bar.png") --smaller than `bg`
img = img:feather_edges(6) --imagine a 6px feather
bg:composite(img, 'over')
但是仍然可以指定图像的哪些部分应该羽化。关于如何做的任何想法?
你需要从顶部图像中拉出alpha,用黑色边框遮住边缘,模糊alpha以使边缘羽化,重新附加,然后构图。
就像是:
#!/usr/bin/luajit
vips = require 'vips'
function feather_edges(image, sigma)
-- split to alpha + image data
local alpha = image:extract_band(image:bands() - 1)
local image = image:extract_band(0, {n = image:bands() - 1})
-- we need to place a black border on the alpha we can then feather into,
-- and scale this border with sigma
local margin = sigma * 2
alpha = alpha
:crop(margin, margin,
image:width() - 2 * margin, image:height() - 2 * margin)
:embed(margin, margin, image:width(), image:height())
:gaussblur(sigma)
-- and reattach
return image:bandjoin(alpha)
end
bg = vips.Image.new_from_file(arg[1], {access = "sequential"})
fg = vips.Image.new_from_file(arg[2], {access = "sequential"})
fg = feather_edges(fg, 10)
out = bg:composite(fg, "over", {x = 100, y = 100})
out:write_to_file(arg[3])
正如jcupitt所说,我们需要从图像中拉出alpha波段,模糊它,再次连接它并将其与背景合成,但是使用该功能,在前景图像周围留下了一个薄的黑色边框。
为了克服这个问题,我们需要复制图像,根据sigma
参数调整图像大小,从缩小的副本中提取alpha波段,模糊它,并用它替换原始图像的alpha波段。像这样,原始图像的边框将被alpha的透明部分完全覆盖。
local function featherEdges(img, sigma)
local copy = img:copy()
:resize(1, { vscale = (img:height() - sigma * 2) / img:height() })
:embed(0, sigma, img:width(), img:height())
local alpha = copy
:extract_band(copy:bands() - 1)
:gaussblur(sigma)
return img
:extract_band(0, { n = img:bands() - 1 })
:bandjoin(alpha)
end