two lines skeletonization
13 ビュー (過去 30 日間)
古いコメントを表示
Hai, I am trying to get a nice skeleton, plotted as one line. After the use of ‘skel’ of the function bwmorph I get a nicely one pixel line. But drawing a line through these pixels with: [B,L] = bwboundaries(image); for k=1:length(B) b = B{k}; plot(b(:,2),b(:,1),'g','LineWidth',1); end
, I get at some points two lines, showed over here http://dl.dropbox.com/u/13969758/skeleton.tif . Has someone a solution to remove these extra formed lines between two skew pixels?
1 件のコメント
Image Analyst
2011 年 6 月 15 日
Why are you using bwboundaries??? The skeleton is already the coordinates of the line location. Call find() on the binary skeleton image if you want a list of (x,y) coordinates, but I wouldn't necessarily to that - it depends on what you want to accomplish by this plotting of the line (again). No need to call bwboundaries at all. So that totally gets rid of your problem.
採用された回答
その他の回答 (1 件)
Sean de Wolski
2011 年 6 月 15 日
Perhaps you could just change the connectivity for bwboundaries?
Could you please post the (small) matrix that yielded the above result.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!