borders of simple image
Mostrar comentarios más antiguos
I have this image, ploted with pcolor:

How come that if i want to plot only borders it doesnt work?
bwmorph(Im,'remove')

The border on the top is missing...
Respuesta aceptada
Más respuestas (1)
Sean de Wolski
el 4 de Nov. de 2013
Can you please provide full reproduction steps? Repeating these steps below does not reproduce this behavior:
SE = strel('disk',10);
BW = SE.getnhood;
subplot(121)
imshow(BW);
BWr = bwmorph(BW,'remove');
subplot(122)
imshow(BWr)
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!