-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstepII.m
23 lines (21 loc) · 863 Bytes
/
stepII.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function stepII
%stepII Pipeline setup for step II of study: "An EEG Experimental Study
% Evaluating the Performance of Texas Instruments ADS1299."
% In this step emg events are detected and adjusted by the rater using
% the emgGo toolbox.
%
%
% Copyright (C) 2018 Usman Rashid
% urashid@aut.ac.nz
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 3 of the License, or
% (at your option) any later version.
%% Constants
DATA_FOLDER = fullfile(pwd, 'Data');
INPUT_FOLDER = fullfile(DATA_FOLDER, 'Step I');
OUTPUT_FOLDER = fullfile(DATA_FOLDER, 'Step II');
%% Start processFolder Function
processFolder(INPUT_FOLDER, OUTPUT_FOLDER, @procStepIFile, @quickViewStepIIFile, @editStepIIFile);
end