【问题标题】:Is there an image processing function to get a skeleton of a binary image in MATLAB是否有图像处理函数可以在 MATLAB 中获取二进制图像的骨架
【发布时间】:2012-08-01 03:02:35
【问题描述】:

骨架化的目标是用最少的像素集来表示二值图像。骨架必须考虑表单的几何属性并保留关联关系。

我的问题是如何从二进制图像中获取骨架?

【问题讨论】:

    标签: matlab image-processing morphological-analysis


    【解决方案1】:

    一种方法是使用BWMORPH

    %# assume your binary image is called binImg
    skeleton = bwmorph(binImg,'skel',inf);
    

    【讨论】:

      【解决方案2】:

      Medial Axis Transform 听起来像您正在寻找的东西。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2011-02-22
        • 2012-06-08
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2021-08-07
        • 2015-10-14
        • 2014-12-19
        相关资源
        最近更新 更多