资源简介
用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
- 上一篇:支持向量机一对一多分类
- 下一篇:kmeans图像聚类程序
相关资源
- 冈萨雷斯 数字图像处理 源代码(m文
- qt图像处理
- 血液图像处理—细胞识别
- VC数字图像处理课程设计
- 图像处理作业C 源代码
- SAR图像处理1
- Graphics Magic图像处理魔术师,含Delph
- 铝合金方波交流TIG焊熔池图像处理
- 基于图像处理的智能车寻迹算法设计
- 医学超声图像处理研究+哈尔滨工业大
- 友锋图像处理系统v3.rar(破解版
- 中科院自动化所历年模式识别博士题
- 图像处理代码
- 电子科技大学模式识别作业以及答案
- 国科大 刘成林老师 模式识别期末考试
- 图片-视频互换程序
- 中科院模式识别考博真题00-16年
- 基于图论的图像处理
- 爬取豆瓣排行榜电影数据(含GUI界面
- 《模式识别》试题以及答案
- opencv视觉测距
- 北京交通大学-数字图像处理试卷+ 答
- 数字图像处理 王伟强 国科大 期末试
- 国科大图像处理作业王伟强老师.rar
- 国科大数字图像处理习题课重点
- 数字图像处理标准测试图片335张
- 国科大模式识别历年期末试题
- 中科院自动化所-模式识别考博真题
- 哈尔滨工业大学深圳 数字图像处理
- 东南大学数字图像处理期末复习
评论
共有 条评论