您好,欢迎访问三七文档
计算机图像处理实验报告1.应用matlab语言编写显示一幅灰度图像、二值图像、索引图像及彩色图像的程序并进行相互之间的转换:(1)读入并显示彩色图像123I=IMREAD(‘123.JPG’)%读取文件Inshow(I);%直接显示文件(2)彩色图像123转为灰色图像graygray=rgb2gray(I);subplot(121);imshow(I)subplot(122);imshow(gray);title('彩色图像转为灰色图像')(3)彩色图像装换为索引图像[ind0,map]=rgb2ind(I,0.2);subplot(121);imshow(I);subplot(122);imshow(ind0);title('彩色图像转为索引图像')(4)索引图像转为彩色图像rgb1=ind2rgb(ind0,map);subplot(121);imshow(ind0);subplot(122);imshow(rgb1);title('索引图像转为彩色图像')(5)彩色图像转换为二值图像bw=im2bw(I,0.5);subplot(121);imshow(I);subplot(122)imshow(bw);title('彩色图像转二值图像')(6)灰色图像转换为索引图像[ind1,map]=gray2ind(gray,128);subplot(121);imshow(gray);subplot(122)imshow(ind1);title('灰度图像转索引图像')(7)灰度图像转为二值图像bw1=im2bw(gray,0.7)subplot(121);imshow(gray);subplot(122)imshow(bw1);title('灰度图像转二值图像')(8)索引图像转二值图像bw2=im2bw(ind0,map,0.6)subplot(121);imshow(ind0);subplot(122)imshow(bw2);title('索引图像转二值图像')2.应用matlab工具箱演示一幅图的傅里叶变换、离散余弦变换,观察其频谱图,然后将它们进行逆变换,观察逆变换后的图像。(1)快速傅里叶变换hgs=vision.GeometricScaler('SizeMethod','Numberofoutputrowsandcolumns','Size',[900,900]);x=imread('123.jpg');x1=step(hgs,x);x2=rgb2gray(x1);y=fft2(x2);y1=fftshift(double(y));imshow(log(abs(y1)),[]);colormap(jet(64));figure(2);imshow(abs(y2),[]);原图像快速傅里叶变换的的频图傅里叶反变换的图像(2)离散余弦变换tu=imread('1234.bmp');I=rgb2gray(tu);imshow(I),title('原图像');J=dct2(I);imshow(log(abs(J)),[]),colormap(jet(64)),colorbar,title('离散余弦变换的结果');J(abs(J)10)=0;K=idct2(J);subplot(1,3,3),imshow(K,[0,255]),title('离散余弦反变换的图像');离散余弦变换的结果离散余弦反变换的图像原图像3.应用matlab语言编程来实现一幅图像的增强(1)取一幅灰度图像,对其进行线性点运算,即AAG)f(GBG,取(α,β)分别为(1.5,1.2)、(0.7,1.2),对原图像进行线性处理,观察处理后的结果,并分析直方图的变换。A=imread('shiyan4.png');I=rgb2gray(A);subplot(221);imshow(I);title('二维灰度图像');[m,n]=size(I);f=double(I);f1=1.5.*f+1.2;G=uint8(f1);subplot(222),imshow(G),title('线性增强1');f2=0.7.*f+1.2;G1=uint8(f2);subplot(223),imshow(G1),title('线性增强2');figure(2)subplot(221),imhist(I),title('原图像的直方图');subplot(223),imhist(G1),title('线性增强1的直方图');subplot(222),imhist(G),title('线性增强2的直方图');(2)取一幅灰度图像,对其进行直方图均衡化处理,再对其进行规定化处理,并对结果进行比较。rgb=imread('123.jpg');gray=rgb2gray(rgb);%%图形规定化figure(3);hgram=100:2:250;special=histeq(gray,hgram);eqgray=histeq(gray);subplot(321);imshow(gray);title('原图像');subplot(322);imhist(gray);title('原图像的直方图');subplot(323);imshow(eqgray);title('均衡化');subplot(324);imhist(eqgray);title('均衡化的直方图');subplot(325);imshow(special);title('规定化');subplot(326);imhist(special);title('规定化的直方图');总结:直方图均衡化的特点:(1)直方图均衡化是在整个灰度范围内近似分布,能增强整个图像的对比度。(2)均衡化后灰度级减少,可能带来图像细节损失。直方图规定化的特点:原始图像灰度直方图变成规定形状的直方图而对图像作修正的增强方法。思考题:如果将一幅图像进行一次直方图均衡化处理后,再进行一次直方图均衡化处理,结果会发生变化吗?观察两次均衡化的直方图是否一样。rgb=imread('123.jpg');gray=rgb2gray(rgb);%%图像均衡化eqgray=histeq(gray);eqgray2=histeq(eqgray);subplot(321);imshow(gray);title('原图像');subplot(322);imhist(gray);title('原图像的直方图');subplot(323);imshow(eqgray);title('均衡化');subplot(324);imhist(eqgray);title('均衡化的直方图');subplot(325);imshow(eqgray2);title('两次均衡化');subplot(326);imhist(eqgray2);title('两次均衡化的直方图');由上图可以看出一幅图像两次均衡化的结果并相同。(3)取一幅灰度图像,加入噪声后进行平滑滤波(均值滤波、中值滤波),并观察不同滤波方式下的效果。f=imread('shiyan4.png');c=rgb2gray(f);subplot(221),imshow(c),title('原始图像');g=imnoise(c,'gaussian',0.1,0.002);subplot(222),imshow(g),title('加入白噪声的图像');Y2=avefit(g,3);subplot(223),imshow(Y2),title('自编函数进行均值滤波');Y3=midfit(g,3);subplot(224),imshow(Y3),title('自编函数进行中值滤波');function[d]=avefit(x,n)a(1:n,1:n)=1;p=size(x);x1=double(x);x2=x1;fori=1:p(1)-n+1forj=1:p(2)-n+1c=x1(i:i+n-1,j:j+n-1).*a;s=sum(sum(c));x2(i+(n-1)/2,j+(n-1)/2)=s/(n*n);endendd=uint8(x2);endfunctiond=midfit(x,n)p=size(x);x1=double(x);x2=x1;fori=1:p(1)-n+1forj=1:p(2)-n+1c=x1(i:i+(n-1),j:j+(n-1));e=c(1,:);foru=2:ne=[e,c(u,:)];endmm=median(e);x2(i+(n-1)/2,j+(n-1)/2)=mm;endendd=uint8(x2);End总结:均值滤波与中值滤波的比较:均值滤波:对邻域内的所有像元求平均值来消除噪声。中值滤波:与周围像元灰度值的差比较大的像元改取近似于周围像元的灰度值。中值滤波对克服线性滤波器所带来的细节迷糊,对颗粒噪声效果最有效。(4)取一幅灰度图像,采用不同的算子对其进行边缘锐化,并分析结果。a=imread('shiyan4.png');a=rgb2gray(a);subplot(221),imshow(a);bw1=edge(a,'sobel');bw2=edge(a,'roberts');bw3=edge(a,'log');subplot(222),imshow(bw1),title('用rorberts算子');subplot(223),imshow(bw2),title('用sobel算子');subplot(224),imshow(bw3),title('用拉普拉斯算子');思考题:为了达到边缘锐化的反差增强效果,实际应用中将高频增强和直方图均衡化结合起来使用,这两个操作的次序能互换?效果一样吗?不能互换,直方图均衡化是把原来的图像的灰度直方图从某个区间变成在全部灰度范围的均匀分布;高频增强是对整个图像进行高通滤波,次序互换对不同频率分量产生影响,从而效果不同。4.对一幅灰度图像进行模糊处理,然后进行逆滤波,维纳滤波与约束最小二乘方滤波复原实验。rgb=imread('123.jpg');gray=rgb2gray(rgb);f=fspecial('motion',30,45);grayblur=imfilter(gray,f,'circular','conv');subplot(2,2,1);imshow(gray);title('原图像');subplot(2,2,2);imshow(grayblur);title('运动模糊处理');blur1=deconvwnr(grayblur,f);subplot(2,2,3);imshow(blur1);title('逆滤波');fr2=deconvreg(grayblur,f);subplot(224);imshow(fr2);title('约束最小二乘方滤波');加入白噪声noise_mean=0;noise_var=0.001;blurred_noisy=imnoise(grayblur,'gaussian',noise_mean,noise_var);nsr=noise_var/var(im2double(gray(:)));blur2=deconvwnr(blurred_noisy,f);fr22=deconvreg(grayblur,f,nsr);blur3=deconvwnr(blurred_noisy,f,nsr);figure(2);subplot(221);imshow(blurred_noisy);title('运动模糊加高斯噪声');subplot(222);imshow(blur2);title('加噪声逆滤波');subplot(223);imshow(blur3);title('维纳滤波恢复');subplot(224);imshow(fr22);title('加噪声约束最小二乘方滤波');5.应用matlab实现一幅图像的旋转剪切和缩放图像缩放I=imread('123.jpg'
本文标题:数字图像处理实验
链接地址:https://www.777doc.com/doc-2387944 .html