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 ?

link|improve this question

1  
Have you tried edit bwmorph? – yuk May 21 '10 at 22:14
feedback

2 Answers

up vote 0 down vote accepted

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
link|improve this answer
Thank you gnovice. – Wassim May 21 '10 at 23:32
feedback

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

link|improve this answer
I'm looking for the matlab code which do the algorithm, not the mathematical algorithm. – Wassim May 21 '10 at 21:34
feedback

Your Answer

 
or
required, but never shown

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