Skeleton的算法是什么

发布于 2024-09-03 01:09:29 字数 128 浏览 8 评论 0 原文

此函数 bwmorph(Img,'skel',Inf) 返回二值图像的骨架。

我正在寻找的是该函数用于手动执行此操作的算法?

This function bwmorph(Img,'skel',Inf) return the skeleton of a binary image.

What I'm looking for is the algorithm used by this function to do it manualy ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三岁铭 2024-09-10 01:09:29

文档给出了该算法的概述(滚动下降了一些方式)。

The documentation gives an overview of the algorithm (scroll down a ways).

星光不落少年眉 2024-09-10 01:09:29

如果您想查看 MATLAB 函数中的实际代码,可以尝试使用 TYPE 命令:

type bwmorph       %# Command form
type('bwmorph.m')  %# Function form

请记住,这不适用于所有 MATLAB 函数。您可能会收到一条消息,指出该函数是内置函数,在这种情况下将不会显示代码。您还可以尝试使用 EDIT 在 MATLAB 编辑器中打开文件命令:

edit bwmorph.m     %# Command form
edit('bwmorph.m')  %# Function form

If you want to see the actual code within a function in MATLAB, you can try using the TYPE command:

type bwmorph       %# Command form
type('bwmorph.m')  %# Function form

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:

edit bwmorph.m     %# Command form
edit('bwmorph.m')  %# Function form
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文