How can i find a medial axis without using bwmorph?

4 次查看(过去 30 天)
Hi,
How can i find a medial axis without using bwmorph?
Thanks.

回答(2 个)

Image Analyst
Image Analyst 2014-7-18
You can probably find skeletonization code somewhere on the net. Just do a search.

DGM
DGM 2023-5-1
If you're trying to avoid bwmorph() specifically for some arbitrary reason, you can use bwskel().
On the other hand, if you're trying to avoid things which require Image Processing Toolbox, then you can use MIMT morphnhood(). It has similar options and syntax as bwmorph(), and for this specific usage, is a drop-in replacement.
% a grayscale image
inpict = imread('threads.png');
% converted to logical
mask = inpict < 150;
%outpict = bwmorph(mask,'skel',Inf); % IPT bwmorph()
outpict = morphnhood(mask,'skel',Inf); % MIMT morphnhood()
imshow(outpict)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by