two lines skeletonization
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Image Analyst
el 15 de Jun. de 2011
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.
Respuesta aceptada
Más respuestas (1)
Sean de Wolski
el 15 de Jun. de 2011
Perhaps you could just change the connectivity for bwboundaries?
Could you please post the (small) matrix that yielded the above result.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!