-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eyeTracker improvements #68
Labels
Comments
Other to do
|
Optional useful functions to implement in the future:
eye_used = Eyelink('EyeAvailable');
switch eye_used
case el.BINOCULAR
error('tracker indicates binocular')
case el.LEFT_EYE
error('tracker indicates left eye')
case el.RIGHT_EYE
disp('tracker indicates right eye')
case -1
error('eyeavailable returned -1')
otherwise
eye_used
error('unexpected result from eyeavailable')
end
Eyelink('command', 'saccade_velocity_threshold = 35');
Eyelink('command', 'saccade_acceleration_threshold = 9500');
EyelinkDoDriftCorrection(el);
success = EyelinkDoDriftCorrection(el);
if success~=1
Eyelink('shutdown');
cleanUp()
return;
end or use % Perform drift correction: The special flags 1,1,1 request interactive correction with video display:
result = Eyelink('DriftCorrStart',30,30,1,1,1);
|
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: