资源简介

本设计为基于matlab的烟雾火焰火灾识别系统,可读取视频或者图象,检测出是否有烟雾火焰,具备一个人机交互式GUI界面,功能强大,识别准确,同时配备相对应的操作说明和运行效果图,直接运行GUI文件即可完美运行。另外,诸如车牌,人脸,图象去雾,压缩,水印,疲劳检测,人数统计,声音信号处理等均可做技术交琉,欢迎一起探讨。

资源截图

代码片段和文件信息

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

% Last Modified by GUIDE v2.5 23-Mar-2018 21:46:51

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

% Choose default command line output for GUI
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

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


% 在运行主界面时隐藏一些控件
set(handles.axes1‘visible‘‘off‘);
set(handles.text1‘visible‘‘off‘);


% --- Outputs from this function are returned to the commandline.
function varargout = GUI_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;


% --- Executes on button press in openvideo_button.
function openvideo_button_Callback(hobject eventdata handles)
% hobject    handle to openvideo_button (see GCBO)
% eventdata  reserved - to be defined in a future v

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        4986  1989-03-16 00:22  Matlab火焰烟雾检测(GUI)\GUI.fig
     文件        4498  1989-03-16 00:22  Matlab火焰烟雾检测(GUI)\GUI.m
     文件         306  1989-03-16 00:43  Matlab火焰烟雾检测(GUI)\文字描述.txt
     文件    11558312  2017-07-21 21:55  Matlab火焰烟雾检测(GUI)\火焰1.mp4
     文件      593617  1989-03-16 00:21  Matlab火焰烟雾检测(GUI)\运行截图.png
     文件         176  1989-03-16 00:29  Matlab火焰烟雾检测(GUI)\运行方式.txt
     目录           0  2019-03-16 13:59  Matlab火焰烟雾检测(GUI)\

评论

共有 条评论