如何将 Photoshop 滤镜和动作复制到 MATLAB 中?
如何使用 MATLAB 复制 Photoshop过滤器和操作?图像处理工具箱中有我可以使用的东西吗?或者我必须从头开始,研究每个过滤器,并为其创建一个函数?
谢谢! =)
How can I use MATLAB to replicate Photoshop filters and actions? Is there something in the image processing toolbox already that I can use? Or will I have to start from scratch, research each filter, and make a function for it?
Thanks! =)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Matlab图像处理工具箱中有一些滤波器。这些过滤器非常完整并且写得很好。并且某些 Photoshop 滤镜可能会映射到工具箱中的功能。
然而,Matlab 图像处理工具箱过滤器中的函数与可用的 Photoshop 过滤器之间不存在一对一的映射。
为了大大简化事情,您必须研究每个过滤器,并为其创建一个函数,该函数可能是也可能不是 Matlab 图像处理工具箱中函数的组合。请注意,制作 Photoshop 的 Adobe 公司在图像处理和计算机视觉方面雇用了几位(许多)重要的研究人员,其中一些滤镜需要很多年才能正确实施。因此,为每个 Photoshop 滤镜创建一个函数可能是一项艰巨的任务。
There are some filters in the Matlab image processing toolbox. These filters are very complete and well written. And some of the Photoshop filters may be mapped to a function in the toolbox.
However, there is not a one to one mapping between functions in the Matlab image processing toolbox filters and the available Photoshop filters.
To simplify things a lot, you will have to research each filter, and make a function for it, which may or may not be a combination of functions in the Matlab image processing toolbox. Observe that Adobe, the company that makes Photoshop employs several (many) important researchers in image processing and computer vision, and some of these filter will take many years to implement correctly. So making a function for each Photoshop filter may be a monumental task.