如何获得 Canny 算法的 MATLAB 源代码
How can I get the source code of the Canny algorithm as used by MATLAB, it is fast and accurate. I want the source code because I want to implement it on hardware.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关于硬件部分的实现,我强烈建议您先咨询律师。话虽如此,调用
即可获取源代码。
About the implementing it on hardware part, I would strongly advice you consult with a lawyer first. That being said, invoking
from MATLAB gets you the source code.
您并不总能获得 MATLAB 函数的源代码(有些可以,有些则不能)。但在 MATLAB 中快速 Google 搜索 Canny 算法会返回许多实现。例如,MathWorks 文件交换站点 上就有一个。这是你需要的吗?
You can't always get the source code for MATLAB functions (some you can, some you can't). But a quick Google search for the Canny algorithm in MATLAB returns a number of implementations. For example, there is one on MathWorks File Exchange site. Is this what you need?