borders of simple image
显示 更早的评论
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...
采纳的回答
更多回答(1 个)
Sean de Wolski
2013-11-4
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)
类别
在 帮助中心 和 File Exchange 中查找有关 Images 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!