ImageVerifierCode 换一换
格式:DOCX , 页数:9 ,大小:15.56KB ,
资源ID:6454929      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bingdoc.com/d-6454929.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(matlab图像处理程序Word格式文档下载.docx)为本站会员(b****3)主动上传,冰点文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰点文库(发送邮件至service@bingdoc.com或直接QQ联系客服),我们立即给予删除!

matlab图像处理程序Word格式文档下载.docx

1、% stop. All inputs are passed to lee_OpeningFcn via varargin.% *See GUI Options on GUIDEs Tools menu. Choose GUI allows only one% instance to run (singleton).% See also: GUIDE, GUIDATA, GUIHANDLES% Edit the above text to modify the response to help lee% Last Modified by GUIDE v2.5 02-Sep-2012 12:36:

2、56% Begin initialization code - DO NOT EDITgui_Singleton = 1;gui_State = struct(gui_Name, mfilename, . gui_Singleton, gui_Singleton, .gui_OpeningFcn, lee_OpeningFcn, .gui_OutputFcn, lee_OutputFcn, .gui_LayoutFcn, , .gui_Callback, );if nargin & ischar(varargin1) gui_State.gui_Callback = str2func(vara

3、rgin1);endif nargout varargout1:nargout = gui_mainfcn(gui_State, varargin:);else gui_mainfcn(gui_State, varargin:% End initialization code - DO NOT EDIT% - Executes just before lee is made visible.function lee_OpeningFcn(hObject, eventdata, handles, varargin)% This function has no output args, see O

4、utputFcn.% hObject handle to figure% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% varargin command line arguments to lee (see VARARGIN)% Choose default command line output for leehandles.output = hObject;% Update handle

5、s structureguidata(hObject, handles);% UIWAIT makes lee wait for user response (see UIRESUME)% uiwait(handles.figure1);% - Outputs from this function are returned to the command line.function varargout = lee_OutputFcn(hObject, eventdata, handles) % varargout cell array for returning output args (see

6、 VARARGOUT);% Get default command line output from handles structurevarargout1 = handles.output;% - Executes on button press in pushbutton1.function pushbutton1_Callback(hObject, eventdata, handles)% hObject handle to pushbutton1 (see GCBO)global im1 str;filename,pathname = . uigetfile(*.jpg;*.bmp*.

7、png*.gif,选择图片);str=pathname,filename;im1=imread(str);axes(handles.axes1);imshow(im1);% - Executes on button press in pushbutton2.function pushbutton2_Callback(hObject, eventdata, handles)% hObject handle to pushbutton2 (see GCBO)% - Executes on button press in pushbutton3.function pushbutton3_Callba

8、ck(hObject, eventdata, handles)% hObject handle to pushbutton3 (see GCBO)% - Executes on button press in pushbutton4.function pushbutton4_Callback(hObject, eventdata, handles)% hObject handle to pushbutton4 (see GCBO)% - Executes on button press in pushbutton5.function pushbutton5_Callback(hObject,

9、eventdata, handles)% hObject handle to pushbutton5 (see GCBO)global im1;im2=im1;%im2=im2bw(im2 , 0.5);No_dither,map=rgb2ind(im2,8,noditheraxes(handles.axes2);imshow(No_dither,map);%imshow(im2);% - Executes on button press in pushbutton6.function pushbutton6_Callback(hObject, eventdata, handles)% hOb

10、ject handle to pushbutton6 (see GCBO)im3=im2bw(im2,0.7);im5=im2bw(im2,0.3);mov1=cat(2,im3,im3);mov2=cat(2,im5,im5);mov3=cat(1,mov1,mov2);imshow(mov3);% - Executes on button press in pushbutton7.function pushbutton7_Callback(hObject, eventdata, handles)% hObject handle to pushbutton7 (see GCBO)%im3,m

11、ap=rgb2ind(im2,128);%mov=immovie(im3,map);%axes(handles.axes2);%movie(mov,1);mri=uint8(zeros(128,128,1,27);for frame=1:27 mri(:,:,frame),map=imread(mri.tif,frame);mov=immovie(mri,map);figure;movie(mov);% - Executes on button press in pushbutton8.function pushbutton8_Callback(hObject, eventdata, hand

12、les)% hObject handle to pushbutton8 (see GCBO)clear all;close(gcf);% - Executes on button press in pushbutton9.function pushbutton9_Callback(hObject, eventdata, handles)% hObject handle to pushbutton9 (see GCBO)montage(mri,map);% - Executes on button press in pushbutton10.function pushbutton10_Callb

13、ack(hObject, eventdata, handles)% hObject handle to pushbutton10 (see GCBO)x,y,z=sphere;warp(x,y,z,im2);% - Executes on button press in pushbutton12.function pushbutton12_Callback(hObject, eventdata, handles)% hObject handle to pushbutton12 (see GCBO)im2=imrotate(im2,60,bilinearimshow(im2);% - Execu

14、tes on button press in pushbutton16.function pushbutton16_Callback(hObject, eventdata, handles)% hObject handle to pushbutton16 (see GCBO)im3=imcrop;imshow(im3);% - Executes on button press in pushbutton17.function pushbutton17_Callback(hObject, eventdata, handles)% hObject handle to pushbutton17 (s

15、ee GCBO)im2=imread(tire.tiff=inline(max(x(:)im3=nlfilter(im2,3,3,f);% - Executes on button press in pushbutton18.function pushbutton18_Callback(hObject, eventdata, handles)% hObject handle to pushbutton18 (see GCBO)im2=im2bw(im2);%im2=imread(pout.tifBW=roipoly;h=fspecial(unsharpim3=roifilt2(h,im2,BW

16、);% - Executes on button press in pushbutton19.function pushbutton19_Callback(hObject, eventdata, handles)% hObject handle to pushbutton19 (see GCBO)im2=rgb2gray(im2);%im3=ind2gray(X,map);im3=roifill;% - Executes on button press in pushbutton20.function pushbutton20_Callback(hObject, eventdata, handles)% hObject handle to pushbutton20 (see GCBO)%im2=mat2gray(im2);im3=edge(im2);

copyright@ 2008-2023 冰点文库 网站版权所有

经营许可证编号:鄂ICP备19020893号-2