I want to create an image of an object from its morphological skeleton. Is there any function in MATLAB or C,C++ code? Thanks in advance.
Original image, and its skeleton (obtained using bwmorph(image,'skel',Inf)):

|
I want to create an image of an object from its morphological skeleton. Is there any function in MATLAB or C,C++ code? Thanks in advance. Original image, and its skeleton (obtained using
| |||||||||||||||||||
feedback
|
|
As stated in the comments above, On the other, if you had, for each skeleton pixel, the values returned by the distance transform, then you can successfully apply the inverse distance transform (as suggested by @belisarius): Note that this implementation of InverseDistanceTransform is rather slow (I based it on a previous answer). It repeatedly uses POLY2MASK to get pixels inside the specified circles, so there is room for improvement..
The result:
| |||||
feedback
|
|
Depending on your object, you may be able to get a meaningful result using dilation (IMDILATE in Matlab). | |||
feedback
|