Skeleton的算法是什么
此函数 bwmorph(Img,'skel',Inf) 返回二值图像的骨架。
我正在寻找的是该函数用于手动执行此操作的算法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
此函数 bwmorph(Img,'skel',Inf) 返回二值图像的骨架。
我正在寻找的是该函数用于手动执行此操作的算法?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
文档给出了该算法的概述(滚动下降了一些方式)。
The documentation gives an overview of the algorithm (scroll down a ways).
如果您想查看 MATLAB 函数中的实际代码,可以尝试使用 TYPE 命令:
请记住,这不适用于所有 MATLAB 函数。您可能会收到一条消息,指出该函数是内置函数,在这种情况下将不会显示代码。您还可以尝试使用 EDIT 在 MATLAB 编辑器中打开文件命令:
If you want to see the actual code within a function in MATLAB, you can try using the TYPE command:
Keep in mind, this will not work on all MATLAB functions. You may get a message that says the function is a built-in function, in which case the code will not be displayed. You can also try opening the file in the MATLAB Editor using the EDIT command: