森林火灾监测系统源代码
function varargout = fire_detection(varargin)
%全局变量
global HJ1B3%第三个波段的变量
global HJ1B4%第四个波段的变量
global parameter3_of_pushbutton2 %第二个按钮的参数变量,指示计算第三号波段
global parameter4_of_pushbutton2 %第二个按钮的参数变量,指示计算第四号波段
global parameter0_of_pushbutton2 %第二个按钮的参数变量,直接链接已经有计算好的数据进行演示
global LDT3%第三号波段的亮温数据
global LDT4%第四号波段的亮温数据
global LDT_N %由于数据量大,选择一块或几块作为实验数据进行实验
% FIRE_DETECTION M-file for fire_detection.fig
% FIRE_DETECTION, by itself, creates a new FIRE_DETECTION or raises the existing
% singleton*.
%
% H = FIRE_DETECTION returns the handle to a new FIRE_DETECTION or the handle to
% the existing singleton*.
%
% FIRE_DETECTION('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in FIRE_DETECTION.M with the given input arguments.
%
% FIRE_DETECTION('Property','Value',...) creates a new FIRE_DETECTION or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before fire_detection_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to fire_detection_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 fire_detection
% Last Modified by GUIDE v2.5 18-May-2010 09:28:56
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @fire_detection_OpeningFcn, ...
'gui_OutputFcn', @fire_detection_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout原文请找腾讯752018766辣,文-论'文.网http://www.751com.cn
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before fire_detection is made visible.
function fire_detection_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure1791