首页 > 行业资讯 > 【交通标志识别】基于模板匹配实现自然场景下的交通标志识别附matlab代码

【交通标志识别】基于模板匹配实现自然场景下的交通标志识别附matlab代码

时间:2022-04-19 来源: 浏览:

【交通标志识别】基于模板匹配实现自然场景下的交通标志识别附matlab代码

天天Matlab 天天Matlab
天天Matlab

TT_Matlab

博主简介:擅长智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,完整matlab代码或者程序定制加qq1575304183。

收录于话题 #图像处理matlab源码 539个

1 简介

随着城市化的进展,汽车的普及,机动车数量、出行人数的大量增加,路网通过能力难以满足交通量快速增长的需要,交通拥挤加剧,交通事故频发,公路交通的安全以及运输效率问题变得日益突出,智能交通系统(Intelligent Transportation System,ITS)被认为是解决这些问题的基本手段,ITS是一个集通讯、检测、控制和计算机技术于一体的综合系统,对保障交通系统的运行安全及运输效率,促进国民经济的发展有重要的意义和经济价值。目前,智能交通系统在我国发展迅速,且已正式列入“十一五”发展规划,驾驶安全问题、城市交通堵塞问题、运输效率问题都有望通过对车辆信息化和智能化的改造获得改善,基于图像检测与处理技术的交通标志识别系统作为智能交通系统的一个重要的子系统,已逐渐成为目前智能交通系统国内外研究的热点。

2 部分代码

function varargout = Enter(varargin) % ENTER MATLAB code for Enter.fig % ENTER, by itself, creates a new ENTER or raises the existing % singleton*. % % H = ENTER returns the handle to a new ENTER or the handle to % the existing singleton*. % % ENTER( ’CALLBACK’ ,hObject,eventData,handles,...) calls the local % function named CALLBACK in ENTER.M with the given input arguments. % % ENTER( ’Property’ , ’Value’ ,...) creates a new ENTER or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before Enter_OpeningFcn gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to Enter_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 Enter % Last Modified by GUIDE v2.5 05-Ari-2022 11:35:52 % Begin initialization code - DO NOT EDIT gui_Singleton = 1; gui_State = struct(’gui_Name’, mfilename, ... ’gui_Singleton’, gui_Singleton, ... ’gui_OpeningFcn’, @Enter_OpeningFcn, ... ’gui_OutputFcn’, @Enter_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 Enter is made visible. function Enter_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 Enter (see VARARGIN) % Choose default command line output for Enter handles.output = hObject; % Update handles structure guidata(hObject, handles); % UIWAIT makes Enter wait for user response (see UIRESUME) % uiwait(handles.figure1); % --- Outputs from this function are returned to the command line. function varargout = Enter_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 edit1_Callback(hObject, eventdata, handles) % hObject handle to edit1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,’ String ’) returns contents of edit1 as text % str2double(get(hObject,’ String ’)) returns contents of edit1 as a double % --- Executes during object creation, after setting all properties. function edit1_CreateFcn(hObject, eventdata, handles) % hObject handle to edit1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called % Hint: edit controls usually have a white background on Windows. % See ISPC and COMPUTER. if ispc && isequal(get(hObject,’BackgroundColor’), get(0,’defaultUicontrolBackgroundColor’)) set(hObject,’BackgroundColor’,’white’); end function edit2_Callback(hObject, eventdata, handles) % hObject handle to edit2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,’ String ’) returns contents of edit2 as text % str2double(get(hObject,’ String ’)) returns contents of edit2 as a double % --- Executes during object creation, after setting all properties. function edit2_CreateFcn(hObject, eventdata, handles) % hObject handle to edit2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called % Hint: edit controls usually have a white background on Windows. % See ISPC and COMPUTER. if ispc && isequal(get(hObject,’BackgroundColor’), get(0,’defaultUicontrolBackgroundColor’)) set(hObject,’BackgroundColor’,’white’); end % --- Executes on button press in pushbutton1. function pushbutton1_Callback(hObject, eventdata, handles) [NUM,TXT,RAW]=xlsread(’ID’); ID=get(handles.edit1,’string’); scr=get(handles.edit2,’string’); scr=str2num(scr); A=ismember(ID,TXT); if A==1 [x,y]=find(ID); if scr~=nan if NUM(x,1)==scr close(Enter); User; else msgbox(’密码错误!’); end else msgbox(’密码错误!’); end else msgbox(’账号错误!’); end % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- Executes on button press in pushbutton2. function pushbutton2_Callback(hObject, eventdata, handles) close(Enter); % hObject handle to pushbutton2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- Executes during object creation, after setting all properties. function figure1_CreateFcn(hObject, eventdata, handles) ha=axes(’units’,’normalized’,’position’,[0 0 1 1]); II=imread(’background.jpg’); image(II) colormap gray set(ha,’handlevisibility’,’off’,’visible’,’off’); global bc bc=0; % hObject handle to figure1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called % --- Executes during object creation, after setting all properties. function pushbutton1_CreateFcn(hObject, eventdata, handles) I=imread(’按钮2.jpg’); set(hObject, ’CData’,I); % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called % --- Executes during object creation, after setting all properties. function pushbutton2_CreateFcn(hObject, eventdata, handles) I=imread(’按钮1.jpg’); set(hObject, ’CData’,I); % hObject handle to pushbutton2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called % --- Executes on button press in pushbutton3. function pushbutton3_Callback(hObject, eventdata, handles) global bc if bc==1 clear sound; bc=0; else if bc==0 [y,fs,nbits]= wavread(’bgm.wav’); sound(y,fs); bc=1; end end % hObject handle to pushbutton3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- Executes during object creation, after setting all properties. function pushbutton3_CreateFcn(hObject, eventdata, handles) I=imread(’小喇叭.jpg’); set(hObject, ’CData’,I); % hObject handle to pushbutton3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called

3 仿真结果

4 参考文献

[1]张航. 自然场景下的交通标志识别算法研究[D]. 中南大学, 2006.

博主简介:擅长智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,相关matlab代码问题可私信交流。

部分理论引用网络文献,若有侵权联系博主删除。

版权:如无特殊注明,文章转载自网络,侵权请联系cnmhg168#163.com删除!文件均为网友上传,仅供研究和学习使用,务必24小时内删除。
相关推荐