Skip to content

Commit 425c9a2

Browse files
committed
switch to MST for testing
1 parent 9de8886 commit 425c9a2

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

cfgMST.m

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,33 @@
1212
% on macs is 0.3
1313
cfg.timing.eventDuration = 0.6; % 0.6 seconds
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+
%
28+
% Field of view in DEGREES OF VISUAL ANGLES:
29+
% top left: 8.32304 1.60312
30+
% bottom right: 11.6757 3.49172
31+
%
32+
% Field of view in DEGREES OF VISUAL ANGLES:
33+
% width: 1.8886
34+
% height: 3.35264
35+
%
36+
% fixation cross displacement in degrees of visual angles
37+
% cfg.fixation.xDisplacement = 0;
38+
% cfg.fixation.yDisplacement = 0;
39+
40+
% cfg.design.xDisplacementFixation = 3;
41+
% cfg.design.xDisplacementAperture = 7;
42+
% cfg.aperture.width = 7;
43+
1544
end

main.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
cfg.dot.speed = 7.5;
2525

2626
%% Run MT+ localizer
27-
cfg = cfgMT(cfg);
27+
% cfg = cfgMT(cfg);
2828

2929
%% Run MT/MST localizer
30-
% cfg = cfgMST(cfg);
30+
cfg = cfgMST(cfg);
3131

3232
cfg = checkParameters(cfg);
3333

0 commit comments

Comments
 (0)