版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、MATLAB图像增强程序举例1.灰度变换增强程序:% GRAY TRANSFORMclc;I=imread('pout.tif');imshow(I);J=imadjust(I,0.3 0.7,0 1,1); %transforms the walues in the %intensity image I to values in J by linealy mapping values% between 0.3 and 0.7 to values between 0 and 1.figure;imshow(J);J=imadjust(I,0.3 0.7,0
2、 1,0.5); % if GAMMA is less than 1,the% mapping si weighted toward higher (brighter) output values.figure;imshow(J);J=imadjust(I,0.3 0.7,0 1,1.5); % if GAMMA is greater than% 1,the mapping si weighted toward lower (darker) output values.figure;imshow(J)J=imadjust(I,0.3 0.7,0 1,
3、1); % If TOP<BOTTOM,the output% image is reversed,as in a photographic negative.figure;imshow(J);5.bmp (587.92 KB)2008-7-18 08:252.直方图灰度变换%直方图灰度变换X,map=imread('forest.tif');I=ind2gray(X,map);%把索引图像转换为灰度图像imshow(I);title('原图像');improfile%用鼠标选择一条对角线,显示线段的灰度值figure;subplot
4、(121)plot(0:0.01:1,sqrt(0:0.01:1)axis squaretitle('平方根灰度变换函数')subplot(122)maxnum=double(max(max(I);%取得二维数组最大值J=sqrt(double(I)/maxnum);%把数据类型转换成double,然后进行平方根变换%sqrt函数不支持uint8类型J=uint8(J*maxnum);%把数据类型转换成uint8类型imshow(J)title('平方根变换后的图像')3.直方图均衡化程序举例% HISTGRAM EAQUALIZATIONclc;% Clear
5、 command windowI=imread('tire.tif');% reads the image in tire.tif into Iimshow(I);% displays the intensity image I with 256 gray levelsfigure;%creates a new figure windowimhist(I);% displays a histogram for the intensity image IJ=histeq(I,64);% transforms the intensity image I,returning J an
6、 intensityfigure;%image with 64 discrete levelsimshow(J);figure;imhist(J);J=histeq(I,32);%transforms the intensity image ,returning in % J an intensityfigure;%image with 32 discrete levelsimshow(J);figure;imhist(J);4.直方图规定化程序举例% HISTGRAM REGULIZATIONclc; %Clear command windowI=imread('tire.tif
7、39;);%reads the image in tire.tif into IJ=histeq(I,32);%transforms the intensity image I,returning in%J an intensity image with 32 discrete levelscounts,x=imhist(J);%displays a histogram for the intensity image IQ=imread('pout.tif');%reads the image in tire.tif into Ifigure;imshow(Q);figure;
8、imhist(Q);M=histeq(Q,counts);%transforms the intensity image Q so that the%histogram of the output image M approximately matches countsfigure;imshow(M);figure;imhist(M);空域滤波增强部分程序1.线性平滑滤波I=imread('eight.tif');J=imnoise(I,'salt & pepper',0.02);subplot(221),imshow(I)title('原图像&
9、#39;)subplot(222),imshow(J)title('添加椒盐噪声图像')K1=filter2(fspecial('average',3),J)/255;%应用3*3邻域窗口法 subplot(223),imshow(K1)title('3x3窗的邻域平均滤波图像')K2=filter2(fspecial('average',7),J)/255;%应用7*7邻域窗口法 subplot(224),imshow(K2)title('7x7窗的邻域平均滤波图像')5.bmp (689.12 KB)2008-
10、7-18 09:502.中值滤波器MATLAB中的二维中值滤波函数medfit2来进行图像中椒盐躁声的去除%IMAGE NOISE REDUCTION WITH MEDIAN FILTERclc;hood=3;%滤波窗口I,map=imread('eight.tif');imshow(I,map);noisy=imnoise(I,'salt & pepper',0.05);figure;imshow(noisy,map);filtered1=medfilt2(noisy,hood hood);figure;imshow(filtered1,map);ho
11、od=5;filtered2=medfilt2(noisy,hood hood);figure;imshow(filtered2,map);hood=7;filtered3=medfilt2(noisy,hood hood);figure;imshow(filtered3,map);3. 4邻域8邻域平均滤波算法% IMAGE NOISE REDUCTION WITH MEAN ALGORITHMclc;I,map=imread('eight.tif');noisy=imnoise(I,'salt & pepper',0.05);m
12、yfilt1=0 1 0;1 1 1;0 1 0;%4邻域平均滤波模版myfilt1=myfilt1/9;%对模版归一化filtered1=filter2(myfilt1,noisy);imshow(filtered1,map);myfilt2=1 1 1;1 1 1;1 1 1;myfilt2=myfilt2/9;filtered2=filter2(myfilt2,noisy);figure;imshow(filtered2,map);频域增强程序举例1.低通滤波器% LOWPASS FILTERclc;I,map=imread('eight.tif');noisy=imno
13、ise(I,'gaussian',0.05);imshow(noisy,map);myfilt1=1 1 1;1 1 1;1 1 1;myfilt1=myfilt1/9;filtered1=filter2(myfilt1,noisy);figure;imshow(filtered1,map);myfilt2=1 1 1;1 2 1;1 1 1;myfilt2=myfilt2/10;filtered2=filter2(myfilt2,noisy);figure;imshow(filtered2,map);myfilt3=1 2 1;2 4 2; 1 2 1;myfilt3=fil
14、ter2(myfilt3,noisy);figure;imshow(filtered3,map);2.布特沃斯低通滤波器图像实例I=imread('saturn.png');J=imnoise(I,'salt & pepper',0.02);subpolt(121),imshow(J)subplot(121),imshow(J)title('含噪声的原图像')%- 08-7-18 上午10:37 -%I=imread('saturn.png');J=imnoise(I,'salt & pepper',0.02);subpolt(121),imshow(J)subplot(121),imshow(J)title('含噪声的原图像')clc;I=imread('saturn.png');J=imnoise(I,'salt & pepper',0.02);subplot(121),imshow(J)title('含噪声的原图像')J=double(J);f=fft2(J);g=fftshift(f)
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- JJF(陕) 062-2021 平面波动量仪校准规范
- JJF(陕) 014-2019 混凝土电阻率测试仪校准规范
- 班会课件之励志系列奋斗改变人生
- 学校文化建设与价值观引导计划
- 激励机制设计与员工忠诚度提升计划
- 证券投资基金销售服务协议三篇
- 走进父母-感恩父母-主题班会情感体验课课件(让生命充满爱)
- HED-系列厚膜阴极电泳涂料相关项目投资计划书范本
- 优化流程的工作计划设计
- 城市环境卫生管理服务行业相关投资计划提议
- 产品研发合伙人合作协议书
- 山东师范大学《学术研究与论文写作》2021-2022学年第一学期期末试卷
- 2023-2024学年广东省深圳市宝安区五年级(上)期末英语试卷
- 幼儿园社会教育专题-形考任务二-国开(FJ)-参考资料
- 设备基础(土建)施工方案
- 部编 2024版历史七年级上册期末(全册)复习卷(后附答案及解析)
- 王卓 企业数智化能力成熟度模型(EDMM)标准体系解读
- 某某有限公司重大危险源安全评估报告(定稿)
- 电梯日管控、周排查、月调度制度及管控清单
- 租车位安装充电桩合同模板
- 老妈是个菜贩子(2022年海南中考语文试卷记叙文阅读题及答案)
评论
0/150
提交评论