-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathinitialize.m
35 lines (25 loc) · 1.12 KB
/
initialize.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
global PARAMS REMORA HANDLES
REMORA.dt.menu = uimenu(HANDLES.remmenu,'Label','&Detector',...
'Enable','on','Visible','on');
% interactive xwav detector
uimenu(REMORA.dt.menu, 'Label', 'Interactive detector (XWAV)', ...
'Callback', 'dtpd(''xwav'')');
% short time
uimenu(REMORA.dt.menu, 'Label', 'Batch Short Time Spectrum (STS)', ...
'Callback', 'dtpd(''dtShortTimeDetection'')');
% high resolution click detection (guided by STS detection)
uimenu(REMORA.dt.menu,'Label','Batch &High Res Click (STS Guided)',...
'Callback','dtpd(''dtST_GuidedHRClickDet'')');
% v2 high resolution click detection (guided by STS detection)
uimenu(REMORA.dt.menu, 'Label', 'Batch High Res Click (STS Guided) V2',...
'Callback', 'dtpd(''dtST_GuidedHRClickDet_v2'')');
% batch processing stream: STS --> hi res
uimenu(REMORA.dt.menu, 'Label', 'STS --> Hi Res Proc Stream',...
'Callback', 'dtpd(''dt_procStream'')');
% batch processing stream: STS --> hi res (v2)
uimenu(REMORA.dt.menu, 'Label', 'STS --> Hi Res Proc Stream V2',...
'Callback', 'dtpd(''dt_procStreamv2'')');
dt_initparams;
dt_initwins;
dt_initcontrol;
dt_initconst;