如何使用任何像素着色语言创建 Photoshop Stamp 滤镜模拟?
如何使用任何像素着色语言创建 Photoshop Stamp 滤镜模拟? (我至少需要过滤算法......)
How to create Photoshop Stamp filter analog in any pixel shading language? (I need at least filter algorithm...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我查看了 Photoshop 中的图章滤镜,它看起来像是一个阈值和一个强模糊加在一起。
我使用了 Devnet 上的 Pixel Bender 基础知识文章 找到的 HorizontalGaussianBlur 内核
只是增加了一个便宜的门槛。这是我的内核的样子:
这远非完美,这是我现在可以快速破解的。这应该
不过给你一些想法。
更新:
这是使用适当灰度的更新版本,高斯模糊代码主要来自Pixel Bender 指南。
注意:我在模糊后应用了阈值,因此结果并不完全是图章过滤器,但很接近。
哈特哈,
乔治
I've look at the Stamp Filter in Photoshop and it looks like a Threshold and a strong Blur added together.
I've used the HorizontalGaussianBlur kernel found Pixel Bender Basics Article on Devnet
and just added a cheap threshold. Here is how my kernel looks like:
This is far from perfect, it is what I could hack quickly at this hour. This should
give you some ideas though.
UPDATE:
Here is an updated version using proper grayscale and the Gaussian Blur code is mostly from the Pixel Bender Guide.
Note: I applied the threshold after the blur, so the result is not exactly a Stamp Filter but close.
HTH,
George