Spring aware接口的作用是什么
289
2022-09-08
【交通标志识别】基于模板匹配实现自然场景下的交通标志识别附matlab代码
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 EDITgui_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});endif 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 Enterhandles.output = hObject;% Update handles structureguidata(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 structurevarargout{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');endfunction 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('密码错误!'); endelse 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 grayset(ha,'handlevisibility','off','visible','off');global bcbc=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 bcif bc==1 clear sound; bc=0;else if bc==0 [y,fs,nbits]= wavread('bgm.wav'); sound(y,fs); bc=1; endend% 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代码问题可私信交流。
部分理论引用网络文献,若有侵权联系博主删除。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~