资源简介
基于MATLAB的图像处理的课程设计 该系统为简易的图像处理系统,能完成图像处理的一切基本问题
代码片段和文件信息
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
- 下一篇:扫描线算法填充多边形
相关资源
- EKF/UKF工具箱
- 4dpsk调制解调的Matlab代码
- LDPC编码的BP译码算法的matlab程序
- matlab分段灰度线性变换代码
- 低速电动汽车建模与测试
- 《MATLAB数值计算》2013修订版中译本的
- 利用MATLAB构造线性二次型最优控制器
- Matlab2010b地址
- 线性代数实践及MATLAB入门(陈怀琛)
- Matlab在原图片中画直线
- 用MATLAB的GUIDE工具做有GUI界面的串口通
- Matlab绘制邻接矩阵
- install_supportsoftware_VGG19.exe
- 最小二乘匹配算法、matlab版
- 将matlab中数据输出保存为txt或dat格式
- PID 算法Matlab详解
- Matlab批量转换图片格式
- matlab实现PCM十三折现编码译码
- 经典开环子空间辨识
- EKFUKFmatlab程序比较
- camshift跟踪算法MATLAB源代码注释.txt
- 系统辨识部分算法matlab程序
- LBP算法的Matlab代码
- MATLAB随机拓扑生成源码
- 模糊k均值聚类算法matlab实现
- 色调,饱和度,亮度图,matlab
- 地统计学中的克里格插值法,Matlab编
- 利用MATLAB对图像进行灰度阈值分割,
- matlab计算GTD-UTD绕射源代码.zip
- IEEE30节点测试系统matlab M文件,包含各
评论
共有 条评论