资源简介
基于MATLAB的图像处理的课程设计 该系统为简易的图像处理系统,能完成图像处理的一切基本问题
![](http://www.nz998.com/pic/41515.jpg)
代码片段和文件信息
function varargout = IMP(varargin)
%IMP M-file for IMP.fig
% IMP by itself creates a new IMP or raises the existing
% singleton*.
%
% H = IMP returns the handle to a new IMP or the handle to
% the existing singleton*.
%
% IMP(‘Property‘‘Value‘...) creates a new IMP using the
% given property value pairs. Unrecognized properties are passed via
% varargin to IMP_OpeningFcn. This calling syntax produces a
% warning when there is an existing singleton*.
%
% IMP(‘CALLBACK‘) and IMP(‘CALLBACK‘hobject...) call the
% local function named CALLBACK in IMP.M with the given input
% arguments.
%
% *See GUI Options on GUIDE‘s 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 IMP
% Last Modified by GUIDE v2.5 01-Dec-2008 13:37:19
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @IMP_OpeningFcn ...
‘gui_OutputFcn‘ @IMP_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before IMP is made visible.
function IMP_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and mhlp_usermanual data (see GUIDATA)
% varargin unrecognized PropertyName/PropertyValue pairs from the
% command line (see VARARGIN)
handles.n=1;
handles.isfigA=0;
handles.isfigB=0;
handles.updown=‘none‘;
try
fidwel=fopen(‘boottext.bin‘‘rb‘);str=fscanf(fidwel‘%s‘);
md=msgbox(str‘欢迎使用!‘‘modal‘);
uiwait(md5);
if ishandle(md)
delete(md)
end
catch
msb=errordlg(‘找不到boottext.bin文件!‘‘错误‘‘modal‘);
uiwait(msb5);
if ishandle(md)
delete(md)
end
end
set(handles.text_state‘string‘‘IMP打开成功‘)
handles.isload=0; %打开时禁止除【加载】键外的所有功能 标志位
% Choose default command line output for IMP
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes IMP wait for mhlp_usermanual response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = IMP_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with hand
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-12-01 22:34 IMP
文件 35 2008-11-29 08:48 IMP\boottext.bin
文件 12695 2008-12-01 13:37 IMP\IMP.fig
文件 31853 2008-12-01 22:25 IMP\IMP.m
文件 75542 2008-12-01 22:33 IMP\使用指南.pdf
文件 81726 2008-12-01 21:16 IMP\关于IMP.pdf
----------- --------- ---------- ----- ----
201851 6
- 上一篇:最简单的DTC
- 下一篇:扫描线算法填充多边形
相关资源
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
- k近邻算法matlab实现
- matlab识别系统
- 神经网络分类matlab程序
- matlab正弦信号发生器的设计
评论
共有 条评论