-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCalibrate.m
112 lines (92 loc) · 3.57 KB
/
Calibrate.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
function [calibPlotData, calibError]= Calibrate(Calib,morder,iter,donts)
global EXPWIN
%CALIBRATE calibrate the eye tracker
% This function is used to set and view the calibration results for the tobii eye tracker.
%
% Input:
% Calib: The calib structure (see CalibParams)
% morder: Order of the calibration point
% iter: 0/1 (0 = A new calibation call, ensure that calibration is not already started)
% (1 = just fixing a few Calibration points)
% donts: Points (with one in the index) that are to be
% recalibrated, 0 else where
% Output:
% calibPlotData: The calibration plot data, specifying the input and output calibration data
calibError=0;
calibPlotData = 0;
assert(Calib.points.n >= 2 && length(Calib.points.x)==Calib.points.n, ...
'Err: Invalid Calibration params, Verify...');
Screen('FillRect',EXPWIN,Calib.bkcolor*255);
Screen(EXPWIN, 'Flip');
try
tetio_startCalib;
end
validmat = ones(1,Calib.points.n);
%generate validity matrix
if ~isempty(donts)
validmat = zeros(1,Calib.points.n);
for i = 1:length(donts)
validmat(morder==donts(i))=1;
end
end
pause(1);
step= 10; %shrinking steps (increase for powerful pcs)
for i =1:Calib.points.n;
%show the big marker
if (validmat(i)==0)
continue;
end
mb = Calib.BigMark;
ms = Calib.SmallMark;
%now shrink
for j = 1:step
bigDotLoc(1) = round(Calib.screen.width*Calib.points.x(morder(i))-mb/2);
bigDotLoc(2) = round(Calib.screen.height*Calib.points.y(morder(i))-mb/2);
bigDotLoc(3) = round(Calib.screen.width*Calib.points.x(morder(i))+mb/2);
bigDotLoc(4) = round(Calib.screen.height*Calib.points.y(morder(i))+mb/2);
smallDotLoc(1) = round(Calib.screen.width*Calib.points.x(morder(i))-ms/2);
smallDotLoc(2) = round(Calib.screen.height*Calib.points.y(morder(i))-ms/2);
smallDotLoc(3) = round(Calib.screen.width*Calib.points.x(morder(i))+ms/2);
smallDotLoc(4) = round(Calib.screen.height*Calib.points.y(morder(i))+ms/2);
Screen('FillOval',EXPWIN,Calib.fgcolor*255, bigDotLoc);
Screen('FillOval',EXPWIN,Calib.fgcolor2*255, smallDotLoc);
Screen(EXPWIN, 'Flip');
if (j==1)
WaitSecs(0.5);
end
if (j==step)
if(Calib.subject_control)
%disp('subControl')
clickToStart=0;
while (clickToStart) % wait for press
[~,~,buttons] = GetMouse(Calib.screenNumber);
if( any(buttons) )
clickToStart=0;
end
end
end
if ~isempty(donts)
tetio_removeCalibPoint(Calib.points.x(morder(i)), Calib.points.y(morder(i)));
disp(['deleted point ' num2str(morder(i)) ' and now adding it, where i = ' num2str(i)])
end
tetio_addCalibPoint(Calib.points.x(morder(i)),Calib.points.y(morder(i)));
WaitSecs(0.2);
end
mb = mb-ceil((Calib.BigMark - Calib.SmallMark)/step);
WaitSecs(0.1);
end
end
Screen('FillRect',EXPWIN,Calib.bkcolor*255);
Screen(EXPWIN, 'Flip');
try
tetio_computeCalib;
calibPlotData = tetio_getCalibPlotData;
catch me
disp('Compute Calib failed, you must recalibrate')
calibPlotData=[];
calibError=1;
end
tetio_stopCalib;
%if(iter==1); keyboard; end
%keyboard
end