Remove the spurious edge of skeleton

조회 수: 20 (최근 30일)
Hong
Hong 2013년 9월 26일
댓글: Lukas Pollmann 2020년 5월 6일
Recently, I've had an object to get it's skeleton,and then simplified the skeleton
but my problem is how to remove the edge of the skeleton for simplified the skeleton
here is my few steps:
First,I've got the skeleton from my object with bwmorph(ima,'skel',Inf)
here is the object which has been filled and the skeleton below:
filling the object:
the skeleton:
Second,for the skeleton, I've mark the branch points and end points
to mark the branch points and end points,I use bwmorph(skel, 'branchpoints') and
bwmorph(skel, 'endpoints');
here is the figure that I marked the points below:
the reds are branch points
the blues are end points
and the last step,
from the above figure, I want to remove the edges between branch point and end point (here I call the edge is spurious edge)
here is the resulting figure that I want
my problem is how can I remove the spurious edges
I've referenced this article
and the suggestions are set the threshold of the distance
but in my situation,the lengths of the spurious edges may have too long or too short...

채택된 답변

Teja Muppirala
Teja Muppirala 2013년 9월 26일
I think there must be a more efficient way to do it, but this at least works. BWDISTGEODESIC starts at a given point, and then calculates the distance as you travel along the path. Start at a endpoint, start walking and find all pixels that are closer than the nearest branchpoint. Then remove those pixels.
skel= bwmorph(ima,'skel',Inf);
B = bwmorph(skel, 'branchpoints');
E = bwmorph(skel, 'endpoints');
[y,x] = find(E);
B_loc = find(B);
Dmask = false(size(skel));
for k = 1:numel(x)
D = bwdistgeodesic(skel,x(k),y(k));
distanceToBranchPt = min(D(B_loc));
Dmask(D < distanceToBranchPt) =true;
end
skelD = skel - Dmask;
imshow(skelD);
hold all;
[y,x] = find(B); plot(x,y,'ro')
  댓글 수: 2
moahaimen talib
moahaimen talib 2017년 3월 6일
bwmorph(I3, 'spur', 7); is that pruning and is there is pruning instruction in matlab?
Lukas Pollmann
Lukas Pollmann 2020년 5월 6일
Dear Ms. Muppirala,
is there a way to use this code for 3d-sceleton images
Thank you a lot

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Liana Norazmi
Liana Norazmi 2015년 5월 7일
May i know how to remove the lines of this image
become like this?
  댓글 수: 1
Karthick Jayaraman
Karthick Jayaraman 2019년 8월 29일
Is there any possibility yo do this in 3D logical array. I guess bwdistgeodesic doest work well in 3D. Any suggestions would be helful!?

댓글을 달려면 로그인하십시오.


Hong
Hong 2013년 9월 30일
thanks to Teja Muppirala
this solution is really help me a lot
as your method, it could worked ^^
thanks to you again :")

Community Treasure Hunt

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

Start Hunting!

Translated by