%膨胀的简单应用
A=imread('broken-text.tif');
B=[0 1 0;1 1 1;0 1 0];%结构元素
A2=imdilate(A,B);%执行膨胀运算
subplot(1,2,1),imshow(A),title('残缺文本')
subplot(1,2,2),imshow(A2),title('膨胀后图像')
膨胀的简单应用
最新推荐文章于 2021-03-24 08:34:22 发布
%膨胀的简单应用
A=imread('broken-text.tif');
B=[0 1 0;1 1 1;0 1 0];%结构元素
A2=imdilate(A,B);%执行膨胀运算
subplot(1,2,1),imshow(A),title('残缺文本')
subplot(1,2,2),imshow(A2),title('膨胀后图像')