📄 16-8.m
字号:
BW1 = imread('circles.tif');
subplot(221),imshow(BW1);
title('原图')
BW2 = bwmorph(BW1,'remove');
subplot(222),imshow(BW2);
title('清除中间亮点')
BW3 = bwmorph(BW1,'skel',Inf);
subplot(223),imshow(BW3);
title('分裂,骨架化')
BW4 = bwmorph(BW1,'bothat');
subplot(224),imshow(BW4);
title('闭运算减去原图')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -