资源简介
实现交通标志图像分割的GUI界面,分割法有Ostu,阈值迭代选择法及区域生长法。
代码片段和文件信息
function varargout = ImageDivision(varargin)
% IMAGEDIVISION M-file for ImageDivision.fig
% IMAGEDIVISION by itself creates a new IMAGEDIVISION or raises the existing
% singleton*.
%
% H = IMAGEDIVISION returns the handle to a new IMAGEDIVISION or the handle to
% the existing singleton*.
%
% IMAGEDIVISION(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in IMAGEDIVISION.M with the given input arguments.
%
% IMAGEDIVISION(‘Property‘‘Value‘...) creates a new IMAGEDIVISION or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before ImageDivision_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to ImageDivision_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 ImageDivision
% Last Modified by GUIDE v2.5 26-Aug-2013 17:11:44
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @ImageDivision_OpeningFcn ...
‘gui_OutputFcn‘ @ImageDivision_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 ImageDivision is made visible.
function ImageDivision_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 ImageDivision (see VARARGIN)
% Choose default command line output for ImageDivision
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes ImageDivision wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = ImageDivision_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 file_Callbac
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-09-06 08:13 综合实验\
文件 5480 2013-08-26 09:22 综合实验\1.jpg
文件 10091 2013-08-26 09:34 综合实验\2.jpg
文件 6094 2013-08-26 09:23 综合实验\3.jpg
文件 5798 2013-08-26 09:23 综合实验\4.jpg
文件 5166 2013-08-26 09:37 综合实验\5.jpg
文件 17017 2013-08-26 09:24 综合实验\6.jpg
文件 5229 2013-08-26 09:35 综合实验\7.jpg
文件 10757 2013-08-26 17:12 综合实验\ImageDivision.fig
文件 15219 2013-08-26 17:12 综合实验\ImageDivision.m
文件 3500 2013-08-28 11:19 综合实验\test.asv
文件 3510 2013-08-28 11:19 综合实验\test.m
文件 705 2013-08-28 11:33 综合实验\test1.m
- 上一篇:local Maximum matlab函数
- 下一篇:小波去噪
相关资源
- matlab GUI编程实现模拟车辆进入和离开
- 图形图像matlab GUI 实现边缘检测
- MATLAB图像处理GUI(包括边缘检测、二
- Matlab GUI 编程经典案例,学习GUI必备
- Matlab的BPSKQPSK等调制解调仿真带界面
- Matlab_神经网络工具箱(GUI界面的使用
- matlab GUI 多界面数据传递的
- matlab串口通信源代码,亲测可行,界
- matlab 实现“猜数字”游戏 GUI
- Matlab GUI实时显示摄像头视频
- MySQL高级思维导图
- 基于MATLABGUI的数字滤波器设计与实现
- (VNS)解决车辆路径问题(CVRP)Mat
- 基于matlab的GUI曲柄摇杆机构的运动仿
- matlabGUI和DSP28335SCI通信
- 利用matlab的GUI设计计算器
- TortoiseGit-LanguagePack-2.10.0.0-64bit-zh_CN.
- 基于matlab的靶环弹孔识别GUI设计.zip
- 基于matlab的GUI搭建通用视频处理工具
- 区域生长法的图像分割matlab程序
- matlab GUI编写的串口调试助手
- 基于Matlab植物虫害检测GUI,注释,s
- MATLAB人数统计[GUI界面,论文].zip
- 说话人识别MATLAB GUI界面设计
- 基于MATLAB的手写数字识别系统设计.
- Matlab PCA+SVM人脸识别包含GUI界面设计
- 基于MATLAB GUI 设计的数字信号处理系统
- 基于MATLABGUI的滤波器设计软件设计-基
- Matlab车牌识别系统含GUI界面.zip
- MATLAB车牌识别出入库计时计费(语音
评论
共有 条评论