Skip to content

Commit 25f9cbc

Browse files
committed
add details for FOV tweaking in MT localiser config
1 parent 17901c0 commit 25f9cbc

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

cfgMT.m

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,29 @@
44

55
cfg.design.localizer = 'MT';
66

7-
cfg.pacedByTriggers.do = true;
7+
cfg.pacedByTriggers.do = false;
88

99
cfg.mri.triggerNb = 0;
1010

1111
cfg.design.nbRepetitions = 15;
1212

1313
cfg.timing.eventDuration = 0.43; % .86 second
1414

15+
%% variable FOV info
16+
% in case the field of view is not properly centered or obstructed
17+
%
18+
% see https://github.com/cpp-lln-lab/estimate_visual_FOV.git
19+
%
20+
% set up configuration: ensure that the following fields are the same
21+
% as when you ran the estimate_visual_FOV script
22+
%
23+
% cfg.testingDevice
24+
% cfg.screen.monitorDistance
25+
% cfg.screen.monitorWidth
26+
27+
% fixation cross displacement in degrees of visual angles
28+
%
29+
% cfg.fixation.xDisplacement = FIXME;
30+
% cfg.fixation.yDisplacement = FIXME;
31+
1532
end

main.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313

1414
cfg.verbose = 1;
1515

16-
cfg.debug.do = false;
17-
cfg.debug.transpWin = false;
16+
cfg.debug.do = true;
17+
cfg.debug.transpWin = true;
1818
cfg.debug.smallWin = false;
1919

2020
cfg.eyeTracker.do = false;
2121

2222
%% Run MT+ localizer
23-
% cfg = cfgMT(cfg);
23+
cfg = cfgMT(cfg);
2424

2525
%% Run MT/MST localizer
26-
cfg = cfgMST(cfg);
26+
% cfg = cfgMST(cfg);
2727

2828
cfg = checkParameters(cfg);
2929

0 commit comments

Comments
 (0)