资源简介

简单易懂,Matlab编写的路标识别程序,可以对一幅图像中的多个路标进行识别。对雾化图片效果很好!Matlab program written in road signs recognition, an image can be identified in a number of signs. Good effect on the atomization pictures!

资源截图

代码片段和文件信息

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

% Last Modified by GUIDE v2.5 20-Jun-2010 00:09:37

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @FeatureExtraction_OpeningFcn ...
                   ‘gui_OutputFcn‘  @FeatureExtraction_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 FeatureExtraction is made visible.
function FeatureExtraction_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 FeatureExtraction (see VARARGIN)

% Choose default command line output for FeatureExtraction
handles.output = hobject;
axes(handles.axes7);
axis([0 100 -100 0]);
% Update handles structure
guidata(hobject handles);

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


% --- Outputs from this function are returned to the command line.
function varargout = FeatureExtraction_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 struc

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-11 19:50  sign recognition\
     文件       24663  2010-07-15 12:30  sign recognition\FeatureExtraction.fig
     文件       12409  2010-06-22 23:25  sign recognition\FeatureExtraction.m
     文件       32053  2010-07-25 19:12  sign recognition\FeatureExtraction_New.fig
     文件       25451  2010-07-22 20:20  sign recognition\FeatureExtraction_New.m
     文件         218  2018-12-12 12:04  sign recognition\fname_array.mat
     文件       15330  2010-05-25 20:43  sign recognition\fr.bmp
     文件      307548  2010-07-01 20:21  sign recognition\Image0508.jpg
     文件      243387  2010-07-01 20:21  sign recognition\Image0868.jpg
     文件      131798  2010-06-06 16:42  sign recognition\lina.bmp
     目录           0  2018-11-11 19:50  sign recognition\lm\
     文件        6824  2008-06-17 15:58  sign recognition\lm\0.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\1.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\2.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\3.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\4.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\5.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\6.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\7.bmp
     文件        6824  2008-06-17 15:58  sign recognition\lm\8.bmp
     文件       15569  2008-06-17 15:58  sign recognition\lm\9.psd
     文件          69  2008-06-17 16:45  sign recognition\lm\Template.xml
     文件       16896  2008-06-19 10:56  sign recognition\lm\Thumbs.db
     文件        1387  2018-12-12 11:26  sign recognition\Moment_calculate.m
     文件       15330  2010-05-25 20:50  sign recognition\nofl.bmp
     文件       15330  2010-05-25 20:50  sign recognition\nostop.bmp
     文件        2266  2010-06-20 00:01  sign recognition\Pic_binaryedge_count.m
     文件        2188  2010-06-20 00:00  sign recognition\Pic_binary_count.m
     文件         879  2010-07-14 19:44  sign recognition\Pic_binary_edge.m
     文件        6959  2010-07-14 19:49  sign recognition\Pic_chain.m
     文件        1668  2010-06-18 19:05  sign recognition\Pic_chain_array2number.m
............此处省略89个文件信息

评论

共有 条评论