The objective of skeletonization is to represent a binary image with a minimum set of pixels. The skeleton must account for geometrical properties of the form and retain associative relationships.

My question here is how can I get a skeleton from binary image?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

One approach is to use BWMORPH.

%# assume your binary image is called binImg
skeleton = bwmorph(binImg,'skel',inf);
link|improve this answer
Thank you very much Jonas. – Wassim May 20 '10 at 17:03
feedback

Medial Axis Transform sounds like what you are looking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.