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)):

hand2 handskel2

link|improve this question
1  
in general that is not possible, unless you have an object with a really simple shape. Can you post an example of the image you are talking about (before and after skeletonization) – Amro Oct 4 '11 at 15:51
Hello @Amro, Object is a simple shape. Original image: http Skeleton: http – user461127 Oct 4 '11 at 20:31
1  
Here, under "more info" you have the simple algorithm explained reference.wolfram.com/mathematica/ref/… – belisarius Oct 5 '11 at 2:35
1  
@belisarius: +1 that should be posted as the answer – Amro Oct 5 '11 at 3:16
1  
@Amro I was using this definition for "skeleton" reference.wolfram.com/mathematica/ref/SkeletonTransform.html. I could be wrong, of course. Anyway, if your skeleton is just b&w, there is no way to know when to stop dilating it. (a big circle and a small circle, both give you the same "skeleton") – belisarius Oct 5 '11 at 21:29
show 3 more comments
feedback

2 Answers

As stated in the comments above, bwmorph(..,'skel',Inf) gives you a binary image of the skeleton, which is not enough on its own to recover the original image.

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..

%# get binary image
BW = ~imread('http://img546.imageshack.us/img546/3154/hand2.png');

%# SkeletonTransform[]
skel = bwmorph(BW,'skel',Inf);
DD = double(bwdist(~BW));
D = zeros(size(DD));
D(skel) = DD(skel);

%# zero-centered unit circle
t = linspace(0,2*pi,50);
ct = cos(t);
st = sin(t);

%# InverseDistanceTransform[] : union of all disks centered around each
%# pixel of the distance transform, taking pixel values as radius
[r c] = size(D);
BW2 = false(r,c);
for j=1:c
    for i=1:r
        if D(i,j)==0, continue; end
        mask = poly2mask(D(i,j).*st + j, D(i,j).*ct + i, r, c);
        BW2(mask) = true;
    end
end

%# plot
figure
subplot(131), imshow(BW), title('original')
subplot(132), imshow(D,[]), title('Skeleton+DistanceTransform')
subplot(133), imshow(BW2), title('InverseDistanceTransform')

The result:

original Skeleton_DistanceTransform InverseDistanceTransform

link|improve this answer
thank you very much for your effort indeed. Sorry, for late reply. The problem is solved as similar to yours. Actually, skeletons are given as x,y coordinates and radius/weight. Reconstruction is performed drawing closed circles at every x,y coordinate and a radius of its weight. – user461127 Oct 15 '11 at 23:49
glad I could help. Please consider marking the answer as accepted if it helped. – Amro Oct 16 '11 at 0:40
feedback

Depending on your object, you may be able to get a meaningful result using dilation (IMDILATE in Matlab).

link|improve this answer
Jonas, thank you for your immediate response. Hope, will cope with it. )) – user461127 Oct 4 '11 at 13:46
feedback

Your Answer

 
or
required, but never shown

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