poster
2019-12-10, 20:41
骨架化的目的是代表具有最少像素集的二进制图像。骨架必须考虑形式的几何属性并保持关联关系。
我的问题是如何从二进制图像中获取骨架?
回答:
一种方法是使用BWMORPH (http://www.mathworks.com/help/toolbox/images/ref/bwmorph.html) 。
%# assume your binary image is called binImg skeleton = bwmorph(binImg,'skel',inf);
更多&回答... (https://stackoverflow.com/questions/2875870)
我的问题是如何从二进制图像中获取骨架?
回答:
一种方法是使用BWMORPH (http://www.mathworks.com/help/toolbox/images/ref/bwmorph.html) 。
%# assume your binary image is called binImg skeleton = bwmorph(binImg,'skel',inf);
更多&回答... (https://stackoverflow.com/questions/2875870)