资源简介

基于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


评论

共有 条评论