资源简介

用GUI界面开发的模式识别图像处理系统,可以实现对图像的增强,分割,变换,打开保存等操作。

资源截图

代码片段和文件信息

function varargout = cwb(varargin)
% CWB M-file for cwb.fig
%      CWB by itself creates a new CWB or raises the existing
%      singleton*.
%
%      H = CWB returns the handle to a new CWB or the handle to
%      the existing singleton*.
%
%      CWB(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in CWB.M with the given input arguments.
%
%      CWB(‘Property‘‘Value‘...) creates a new CWB or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before cwb_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to cwb_OpeningFcn via varargin.
%
%      *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 cwb

% Last Modified by GUIDE v2.5 02-Jul-2015 13:00:01

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @cwb_OpeningFcn ...
                   ‘gui_OutputFcn‘  @cwb_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 cwb is made visible.
function cwb_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 user data (see GUIDATA)
% varargin   command line arguments to cwb (see VARARGIN)

% Choose default command line output for cwb
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes cwb wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = cwb_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 handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;

% --------------------------------------------------------------------
function open_Callback(hobject eventdata handles)
% hobject    handle to open (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global A;          

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-04-16 20:53  图形处理系统\
     文件       16976  2009-07-13 20:59  图形处理系统\bird-0071.jpg
     文件       17837  2015-07-02 13:13  图形处理系统\cwb.fig
     文件       19794  2015-07-02 13:00  图形处理系统\cwb.m
     文件       10343  2005-03-23 13:40  图形处理系统\dog-0030.jpg
     文件       32499  2005-03-22 21:36  图形处理系统\lianpu-0016.jpg
     文件       64864  2014-08-07 23:26  图形处理系统\xy.jpg
     文件       13188  2015-07-03 13:39  图形处理系统\yangrui.fig
     文件       29841  2016-09-09 18:42  图形处理系统\yangrui.m

评论

共有 条评论