文件名称:图像增强,很有用哦!
文件大小:10KB
文件格式:RAR
更新时间:2013-06-06 11:45:14
图像增强
关于图像增强的m源程序 比如: [I,map]=imread('3-22.jpg'); imshow(I,map); I=double(I); [Gx,Gy]=gradient(I); % 计算梯度 G=sqrt(Gx.*Gx+Gy.*Gy); % 注意是矩阵点乘 J1=G; figure,imshow(J1,map); % 第一种图像增强 J2=I; % 第二种图像增强 K=find(G>=7); J2(K)=G(K); figure,imshow(J2,map); J3=I; % 第三种图像增强 K=find(G>=7); J3(K)=255; figure,imshow(J3,map); J4=I; % 第四种图像增强 K=find(G<=7); J4(K)=255; figure,imshow(J4,map); J5=I; % 第五种图像增强 K=find(G<=7); J5(K)=0; Q=find(G>=7); J5(Q)=255; figure,imshow(J5,map);
【文件预览】:
chap3
----3-22.jpg(6KB)
----P0312.m(614B)
----P0305.m(367B)
----P0307.m(433B)
----P0301.m(544B)
----P0311.m(662B)
----P0304.m(346B)
----P0310.m(263B)
----P0306.m(481B)
----P0302.m(557B)
----P0309.m(600B)
----P0308.m(222B)
----readme.txt(600B)
----P0303.m(126B)