% -- THIS SOFTWARE HAS BEEN CREATED FOR PRE-PROCESSING REFLECTANCE SPECTRA ACHIEVED BY MEANS OF ASD SPECTRORADIOMETER --
% The software can be adapted to other instruments changing the function
% for file reading and the values that are entered in the fields of GUIs
% SOFTWARE USE:
% This function (call_ch_removal.m) call call_ch_removal.fig (GUI1) that allows to insert the preliminary
% options before callback to ch_removal.fig (GUI2). First the GUI1 allows to choice the type of ASD files,
% then it is possible to insert the extremes as wavelength to remove sensor bad calibration and atmospheric
% band with noise. While the GUI2 allows to pre-process the reflectance spectra.
function varargout = call_ch_removal(varargin)
% CALL_CH_REMOVAL M-file for call_ch_removal.fig
% CALL_CH_REMOVAL, by itself, creates a new CALL_CH_REMOVAL or raises the existing
% singleton*.
%
% H = CALL_CH_REMOVAL returns the handle to a new CALL_CH_REMOVAL or the handle to
% the existing singleton*.
%
% CALL_CH_REMOVAL('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in CALL_CH_REMOVAL.M with the given input arguments.
%
% CALL_CH_REMOVAL('Property','Value',...) creates a new CALL_CH_REMOVAL or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before call_ch_removal_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to call_ch_removal_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 call_ch_removal
% Last Modified by GUIDE v2.5 12-Feb-2013 19:41:36
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @call_ch_removal_OpeningFcn, ...
'gui_OutputFcn', @call_ch_removal_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 call_ch_removal is made visible.
function call_ch_removal_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 call_ch_removal (see VARARGIN)
% Choose default command line output for call_ch_removal
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes call_ch_removal wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = call_ch_removal_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 edit10_CreateFcn(hObject, eventdata, handles)
usewhitebg = 1;
if usewhitebg
set(hObject,'BackgroundColor','green');
else
set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end
function edit10_Callback(hObject, eventdata, handles)
global edit10
edit10 = str2num(get(hObject, 'String'));
if isnan(edit10)
set(hObject, 'String', 0);
errordlg('Input must be a number','Error');
end
function edit11_CreateFcn(hObject, eventdata, handles)
usewhitebg = 1;
if usewhitebg
set(hObject,'BackgroundColor','magenta');
else
set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end
function edit11_Callback(hObject, eventdata, handles)
global edit11
edit11 = str2num(get(hObject, 'String'));
if isnan(edit11)
set(hObject, 'String', 0);
errordlg('Input must be a number','Error');
end
% --- Executes on selection change in popupmenu1.
function popupmenu1_Callback(hObject, eventdata, handles)
% hObject handle to popupmenu1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: contents = get(hObject,'String') returns popupmenu1 contents as cell array
% contents{get(hObject,'Value')} returns selected item from popupmenu1
global choise_asdtype
switch get(handles.popupmenu1,'Value')
case 1
list=get(handles.popupmenu1,'String');
val=get(handles.popupmenu1,'Value');
choise_asdtype=list{val};
case 2
list=get(handles.popupmenu1,'String');
val=get(handles.popupmenu1,'Value');
choise_asdtype=list{val};
otherwise
end
% --- Executes during object creation, after setting all properties.
function popupmenu1_CreateFcn(hObject, eventdata, handles)
% hObject handle to popupmenu1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: popupmenu 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)
ch_removal;