资源简介

实现交通标志图像分割的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

评论

共有 条评论