预览加载中,请您耐心等待几秒...
1/9
2/9
3/9
4/9
5/9
6/9
7/9
8/9
9/9

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

《数字图像处理》课程实验报告 第页(共NUMPAGES9页) 试验一Matlab图像工具箱的使用 程序: I=imread('图形1.tif'); subplot(1,2,1),imshow(I) subplot(1,2,2),imhist(I) 结果: 试验二图像变换 图像的二维傅里叶频谱 程序: I=imread('图形1.tif'); J=fftshift(fft2(I)) subplot(1,2,1),imshow(I) subplot(1,2,2),imshow(log(abs(J)),[8,10]) 结果: 试验三图像灰度修正技术和直方图均衡化 等灰度值图和色彩直方图 程序: I=imread('cameraman.tif'); subplot(2,2,1),imshow(I) subplot(2,2,2),imhist(I) subplot(2,2,3),imcontour(I,8) 结果: 通过直方图变幻,调整对比度 程序: I=imread('cameraman.tif'); J=imadjust(I,[0.30.7],[]) subplot(2,2,1),imshow(I) subplot(2,2,2),imshow(J) subplot(2,2,3),imhist(I) subplot(2,2,4),imhist(J) 结果: 直方图均衡化 程序: I=imread('cameraman.tif'); subplot(1,2,1),imshow(I) subplot(1,2,2),histeq(I) 结果: 试验四图像的平滑 程序: I=imread('cameraman.tif'); J1=imnoise(I,'gaussian',0.02); J2=imnoise(I,'salt&pepper',0.02); J3=imnoise(I,'speckle',0.02); Subplot(2,2,1),imshow(I); Subplot(2,2,2),imshow(J1); Subplot(2,2,3),imshow(J2); Subplot(2,2,4),imshow(J3); 结果: 程序: I=imread('cameraman.tif'); J1=imnoise(I,'gaussian',0.02); J2=imnoise(I,'salt&pepper',0.02); J3=imnoise(I,'Speckle',0.02); K1=medfilt2(J1) K2=medfilt2(J2) K3=medfilt2(J3) Subplot(2,2,1),imshow(I); Subplot(2,2,2),imshow(K1); Subplot(2,2,3),imshow(K2); Subplot(2,2,4),imshow(K3); 结果: 试验五图像的锐化 程序: I=imread('cameraman.tif'); J1=edge(I,'Sobel'); J2=edge(I,'prewitt'); Subplot(2,2,1),imshow(I); Subplot(2,2,2),imshow(J1); Subplot(2,2,3),imshow(J2); 结果: 程序: I=imread('cameraman.tif'); J1=imnoise(I,'gaussian',0.02); J2=imnoise(I,'salt&pepper',0.02); K1=edge(J1,'Sobel'); K2=edge(J2,'Sobel'); Subplot(2,2,1),imshow(I); Subplot(2,2,2),imshow(K1); Subplot(2,2,3),imshow(K2); 结果: