Newer
Older
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
% Setup
% Set default vaules. Will not work without it for some reason.
PsychDefaultSetup(2);
% Set background color to black
backgroundcolor = 0.0;
% Get the list of screens and choose the one with the highest screen number.
screenNumber=max(Screen('Screens'))
% Create fullscreen window with 0 - 0.1 color range
[w, wRect] = PsychImaging('OpenWindow', screenNumber, backgroundcolor);
% Get subject No
subjectNo = getCurrentSubjectNo;
% Get image list
images = getImgList();
% Generate design matrix
designMatrix = genDesignMatrix(subjectNo, images);
% Diplay welcome screen
welcomeScreen(subjectNo, w, wRect);
sca;
% current_dir = mfilename('fullpath');
% idx=strfind(current_dir,'/');
% folder = current_dir(1:idx(end));
% folder = strcat(folder,'pictures/');
% image = strcat(folder,'000.png');
% imdata=imread(image);
%
% images = getImgList;
%
%
% genDesignMatrix(1, images)
% Show welcome Screen
% Iterate over design matrix
% % Assemble file name, load picture
% save, probably as json because of the coordinates
%[a,b,c,d,e] = currentTrial(imdata, 0.1, 'gauss', w, wRect);
%plot(b,c,d,e, 'rs')