资源描述:
《数字图像处理实验四、基于GUIDE图像处理软件开发.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验四、基于GUIDE的图像处理软件开发一、实验目的(1)学习使用MATLABGUIDE的基本操作。(2)以图像增强为例完成基本图像处理功能的回调函数编写。二、实验主要仪器设备(1)台式机或笔记本电脑。(2)MATLAB软件(含GUIDE开发环境)。三、实验原理(1)基于灰度直方图变换的图像增强。(2)灰度修正图像增强。(3)图像平滑滤波。(4)图像锐化处理。四、实验内容(1)直方图的计算及用直方图均衡原理增强图像。(2)线性灰度变换图像增强。(3)对受椒盐噪声污染的图像采用低通处理模板去燥。(4)对受椒盐噪声污染的图像采用中值滤波去噪。(5)对图像采用梯度算子和拉
2、普拉斯算子进行锐化。五、实验步骤(1)建立开发环境。(2)编写相关回调函数。(3)不断调试、优化,获得较满意的人机交互效果。六、实验程序functionvarargout=test4(varargin)%TEST4MATLABcodefortest4.fig%TEST4,byitself,createsanewTEST4orraisestheexisting%singleton*.%%H=TEST4returnsthehandletoanewTEST4orthehandleto%theexistingsingleton*.%%TEST4('CALLBACK',hOb
3、ject,eventData,handles,...)callsthelocal%functionnamedCALLBACKinTEST4.Mwiththegiveninputarguments.%%TEST4('Property','Value',...)createsanewTEST4orraisesthe%existingsingleton*.Startingfromtheleft,propertyvaluepairsare..%appliedtotheGUIbeforetest4_OpeningFcngetscalled.An%unrecognizedpro
4、pertynameorinvalidvaluemakespropertyapplication%stop.Allinputsarepassedtotest4_OpeningFcnviavarargin.%%*SeeGUIOptionsonGUIDE'sToolsmenu.Choose"GUIallowsonlyone%instancetorun(singleton)".%%Seealso:GUIDE,GUIDATA,GUIHANDLES%Edittheabovetexttomodifytheresponsetohelptest4%LastModifiedbyGUID
5、Ev2.530-May-201717:23:54%Begininitializationcode-DONOTEDITgui_Singleton=1;gui_State=struct('gui_Name',mfilename,...'gui_Singleton',gui_Singleton,...'gui_OpeningFcn',@test4_OpeningFcn,...'gui_OutputFcn',@test4_OutputFcn,...'gui_LayoutFcn',[],...'gui_Callback',[]);ifnargin&&ischar(vararg
6、in{1})gui_State.gui_Callback=str2func(varargin{1});endifnargout[varargout{1:nargout}]=gui_mainfcn(gui_State,varargin{:});elsegui_mainfcn(gui_State,varargin{:});end%Endinitializationcode-DONOTEDIT%---Executesjustbeforetest4ismadevisible.functiontest4_OpeningFcn(hObject,eventdata,handles
7、,varargin)%Thisfunctionhasnooutputargs,seeOutputFcn.%hObjecthandletofigure%eventdatareserved-tobedefinedinafutureversionofMATLAB%handlesstructurewithhandlesanduserdata(seeGUIDATA)%varargincommandlineargumentstotest4(seeVARARGIN)%Choosedefaultcommandlineoutputfortest4handles.output=hO