%函数imopen和imclose的应用
f=imread('shape.tif');
subplot(2,2,1),imshow(f),title('原图像')
se=strel('square',20);%结构元素
fo=imopen(f,se);%开运算
subplot(2,2,2),imshow(fo),title('开运算后的图像')
fc=imclose(f,se);%闭运算
subplot(2,2,3),imshow(fc),title('闭运算后的图像')
foc=imclose(fo,se)%开闭运算
subplot(2,2,4),imshow(foc),title('开闭运算后的图像')
函数imopen和imclose的应用
最新推荐文章于 2024-08-13 22:34:15 发布