开运算和闭运算的作用

%开运算和闭运算的作用
f=imread('fingerprint.tif');
subplot(3,2,1),imshow(f),title('原图像')

se=strel('square',3);%结构元素
fo=imopen(f,se);%开运算
subplot(3,2,2),imshow(fo),title('开运算后的图像')

foc=imclose(fo,se)%开运算后再闭运算
subplot(3,2,3),imshow(foc),title('开运算再闭运算后的图像')

%细化的应用
g1=bwmorph(foc,'thin',1);%细化一次
g2=bwmorph(foc,'thin',2);%细化两次
subplot(3,2,4),imshow(g1),title('细化一次的图像')
subplot(3,2,5),imshow(g2),title('细化两次的图像')
grif=bwmorph(foc,'thin',Inf);%细化到稳定
subplot(3,2,6),imshow(grif),title('细化到稳定状态的图像')

你可能感兴趣的:(开运算和闭运算的作用)