资源简介
用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图像聚类程序
相关资源
- 遥感图像中机场跑道检测算法的研究
- ct图像的肺实质提取
- AdaBoost人脸识别完整实现(含特征提取
- 车辆检测视频素材,动态目标捕捉并
- opencv+vs2017实现图象去雾
- opencv图像细化代码
- 模式识别-中科院.txt
- mri医学图像蚁群分割
- 数字图像处理技术及其应用.pdf
- 读取并可视化DICOM图像VTK & OpenCV
- 国科大中科院黄庆明2018级机器学习与
- 图像二维傅里叶变换的物理意义
- 基于图像处理的相机自动调焦系统
- 2008级数字图像处理期末考试试题
- 重庆大学模式识别课程论文
- 关于ccs的一个简单图像处理
- CUDA 图像处理
- Ho-Kashyap算法
- 图像的载入显示和输出程序by浅墨
- 基于视频的运动目标检测
- lena256*256灰度图像
- 基于SVM的成对分类法对于手写数字识
- STM32 d的图形GUI界面代码
- SVM对偶空间求解与直接求解效率比较
- 基于FPGA的数字图像处理原理及应用程
- PRML模式识别与机器学习 习题答案完整
- 数字图像处理大作业————各种图
- QT实现图像处理-傅立叶变换、傅立叶
- 一个很好的模式识别课程的
- 模式识别的几篇论文
评论
共有 条评论