forked from cpp-lln-lab/localizer_visual_motion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.m
More file actions
40 lines (27 loc) · 663 Bytes
/
main.m
File metadata and controls
40 lines (27 loc) · 663 Bytes
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
31
32
33
34
35
36
37
38
39
40
% set your options here and then call visualMotionLocalizer(cfg)
%
% (C) Copyright 2020 CPP visual motion localizer developers
clc;
clear;
initEnv();
cfg.subject.subjectGrp = 'pilot';
cfg.subject.sessionNb = 1;
cfg.subject.askGrpSess = [true false];
cfg.verbose = 1;
cfg.debug.do = false;
cfg.debug.transpWin = false;
cfg.debug.smallWin = false;
cfg.audio.devIdx = 5;
cfg.eyeTracker.do = true;
% in liege 7.5
% on Marco's mac 15
cfg.dot.speed = 7.5;
%% Run MT+ localizer
% cfg = cfgMT(cfg);
%% Run MT/MST localizer
cfg = cfgMST(cfg);
cfg = checkParameters(cfg);
% to view all the options that are set
% unfold(cfg);
% run
visualMotionLocalizer(cfg);