怎样才能“干刷”呢? Adobe Photoshop 的滤镜可以用 C# 实现吗?
我目前正在创建一个应用程序,需要在位图上实现 Adobe Photoshop 的“干画笔”滤镜。
我完全不知道从哪里开始。
这是原始图像的示例以及我需要的结果: (由于我是新用户,所以无法直接发布图片)
之前:
之后:
*或者,我希望图像看起来像油画,就像您在示例中看到的那样。
任何帮助将不胜感激!
I am currently creating an application that needs to implement the "Dry Brush" Filter of Adobe Photoshop on a Bitmap.
I have absolutely no idea where to begin.
Here is an example of the original image and what i need the outcome to be:
(Since i am a new user i cannot directly post images)
Before:
After:
*Alternatively i would like to have the image to look like an oil painting like you can see in the example.
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
干刷滤镜的定义是“干刷:它通过将图像的颜色范围减少到常见颜色的区域来简化图像”。
尝试逐个像素地浏览图像,如果该像素是某种绿色阴影,则将其转换为一般的绿色阴影。
The definition for a dry brush filter is "Dry Brush: It simplifies an image by reducing its range of colors to areas of common color".
Try going through the image, pixel by pixel, and if the pixel is a certain shade of green, just turn it into a general shade of green.