/usr/share/psychtoolbox-3/PsychDemos/GazeContingentDemo.m is in psychtoolbox-3-common 3.0.9+svn2579.dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 | function GazeContingentDemo(mode, ms, myimgfile)
%
% ___________________________________________________________________
%
% Demo implementation of a generic gaze-contingent display.
% We take one input image and create - via image processing - two images
% out of it: An image to show at the screen location were the subject
% fixates (According to the eye-tracker). A second image to show in the
% peripery of the subjects field of view. These two images are blended into
% each other via a gaussian weight mask (an aperture). The mask is centered
% at the center of gaze and allows for a smooth transition between the two
% images.
%
% This illustrates an application of OpenGL Alpha blending by compositing
% two images based on a spatial gaussian weight mask. Compositing is done
% by the graphics hardware.
%
% See also: PsychDemos, MovieDemo, DriftDemo
% HISTORY
%
% mm/dd/yy
%
% 7/23/05 mk Derived it from Frans Cornelissens AlphaImageDemoOSX.
% 11/19/06 dhb Remove OSX from name.
% Set hurryup = 1 for benchmarking - Syncing to retrace is disabled
% in that case so we'll get the maximum refresh rate.
hurryup=0;
% Setup default mode to color vs. gray.
if nargin < 1
mode = 1;
end;
% Setup default aperture size to 2*200 x 2*200 pixels.
if nargin < 2
ms=200;
end;
basepath = [ PsychtoolboxRoot 'PsychDemos' filesep ];
% Use default demo images, if no special image was provided.
if nargin < 3
myimgfile= [basepath 'konijntjes1024x768.jpg'];
end;
myblurimgfile= [basepath 'konijntjes1024x768blur.jpg'];
mygrayimgfile= [basepath 'konijntjes1024x768gray.jpg'];
try
fprintf('GazeContingentDemo (%s)\n', datestr(now));
fprintf('Press a key or click on mouse to stop demo.\n');
% This script calls Psychtoolbox commands available only in OpenGL-based
% versions of the Psychtoolbox. (So far, the OS X Psychtoolbox is the
% only OpenGL-based Psychtoolbox.) The Psychtoolbox command AssertOpenGL will issue
% an error message if someone tries to execute this script on a computer without
% an OpenGL Psychtoolbox
AssertOpenGL;
% Get the list of screens and choose the one with the highest screen number.
% Screen 0 is, by definition, the display with the menu bar. Often when
% two monitors are connected the one without the menu bar is used as
% the stimulus display. Chosing the display with the highest display number is
% a best guess about where you want the stimulus displayed.
screenNumber=max(Screen('Screens'));
% Open a double buffered fullscreen window.
[w, wRect]=Screen('OpenWindow',screenNumber);
% Find the color values which correspond to white and black. Though on OS
% X we currently only support true color and thus, for scalar color
% arguments,
% black is always 0 and white 255, this rule is not true on other platforms will
% not remain true on OS X after we add other color depth modes.
white=WhiteIndex(screenNumber);
black=BlackIndex(screenNumber);
gray=GrayIndex(screenNumber); % returns as default the mean gray value of screen
% Set background color to gray:
backgroundcolor = gray;
% Load image file:
fprintf('Using image ''%s''\n', myimgfile);
imdata=imread(myimgfile);
imdatablur=imread(myblurimgfile);
imdatagray=imread(mygrayimgfile);
% crop image if it is larger then screen size. There's no image scaling
% in maketexture
[iy, ix, id]=size(imdata);
[wW, wH]=WindowSize(w);
% wW=wRect(3);
% wH=wRect(4);
if ix>wW | iy>wH
disp('Image size exceeds screen size');
disp('Image will be cropped');
end
if ix>wW
cl=round((ix-wW)/2);
cr=(ix-wW)-cl;
else
cl=0;
cr=0;
end
if iy>wH
ct=round((iy-wH)/2);
cb=(iy-wH)-ct;
else
ct=0;
cb=0;
end
% imdata is the cropped version of the image.
imdata=imdata(1+ct:iy-cb, 1+cl:ix-cr,:);
imdatablur=imdatablur(1+ct:iy-cb, 1+cl:ix-cr,:);
imdatagray=imdatagray(1+ct:iy-cb, 1+cl:ix-cr,:);
% Compute image for foveated region and periphery:
switch (mode)
case 1
% Mode 1:
% Fovea contains original image data:
foveaimdata = imdata;
% Periphery contains grayscale-version:
peripheryimdata = imdatagray;
case 2
% Fovea contains original image data:
foveaimdata = imdata;
% Periphery contains blurred-version:
peripheryimdata = imdatablur;
case 3
% Fovea contains color-inverted image data:
foveaimdata(:,:,:) = 255 - imdata(:,:,:);
% Periphery contains original data:
peripheryimdata = imdata;
case 4
% Test-case: One shouldn't see any foveated region on the
% screen - this is a basic correctness test for blending.
foveaimdata = imdata;
peripheryimdata = imdata;
otherwise
% Unknown mode! We force abortion:
fprintf('Invalid mode provided!');
abortthisbeast
end;
% Build texture for foveated region:
foveatex=Screen('MakeTexture', w, foveaimdata);
tRect=Screen('Rect', foveatex);
% Build texture for peripheral (non-foveated) region:
nonfoveatex=Screen('MakeTexture', w, peripheryimdata);
[ctRect, dx, dy]=CenterRect(tRect, wRect);
% We create a Luminance+Alpha matrix for use as transparency mask:
% Layer 1 (Luminance) is filled with 'backgroundcolor'.
transLayer=2;
[x,y]=meshgrid(-ms:ms, -ms:ms);
maskblob=ones(2*ms+1, 2*ms+1, transLayer) * backgroundcolor;
% Layer 2 (Transparency aka Alpha) is filled with gaussian transparency
% mask.
xsd=ms/2.2;
ysd=ms/2.2;
maskblob(:,:,transLayer)=round(255 - exp(-((x/xsd).^2)-((y/ysd).^2))*255);
% Build a single transparency mask texture:
masktex=Screen('MakeTexture', w, maskblob);
mRect=Screen('Rect', masktex);
fprintf('Size image texture: %d x %d\n', RectWidth(tRect), RectHeight(tRect));
fprintf('Size mask texture: %d x %d\n', RectWidth(mRect), RectHeight(mRect));
% Set background color to 'backgroundcolor' and do initial flip to show
% blank screen:
Screen('FillRect', w, backgroundcolor);
Screen('Flip', w);
% The mouse-cursor position will define gaze-position (center of
% fixation) to simulate (x,y) input from an eyetracker. Set cursor
% initially to center of screen:
[a,b]=RectCenter(wRect);
SetMouse(a,b,screenNumber); % set cursor and wait for it to take effect
HideCursor;
buttons=0;
priorityLevel=MaxPriority(w);
Priority(priorityLevel);
% Wait until all keys on keyboard are released:
while KbCheck; WaitSecs(0.1); end;
mxold=0;
myold=0;
oldvbl=Screen('Flip', w);
tavg = 0;
ncount = 0;
% Infinite display loop: Whenever "gaze position" changes, we update
% the display accordingly. Loop aborts on keyboard press or mouse
% click or after 10000 frames...
while (ncount < 10000)
% Query current mouse cursor position (our "pseudo-eyetracker") -
% (mx,my) is our gaze position.
if (hurryup==0)
[mx, my, buttons]=GetMouse; %(w);
else
% In benchmark mode, we just do a quick sinusoidal motion
% without query of the mouse:
mx=500 + 500*sin(ncount/10); my=300;
end;
% We only redraw if gazepos. has changed:
if (mx~=mxold | my~=myold)
% Compute position and size of source- and destinationrect and
% clip it, if necessary...
myrect=[mx-ms my-ms mx+ms+1 my+ms+1]; % center dRect on current mouseposition
dRect = ClipRect(myrect,ctRect);
sRect=OffsetRect(dRect, -dx, -dy);
% Valid destination rectangle?
if ~IsEmptyRect(dRect)
% Yes! Draw image for current frame:
% Step 1: Draw the alpha-mask into the backbuffer. It
% defines the aperture for foveation: The center of gaze
% has zero alpha value. Alpha values increase with distance from
% center of gaze according to a gaussian function and
% approach 255 at the border of the aperture...
Screen('BlendFunction', w, GL_ONE, GL_ZERO);
Screen('DrawTexture', w, masktex, [], myrect);
% Step 2: Draw peripheral image. It is only drawn where
% the alpha-value in the backbuffer is 255 or high, leaving
% the foveated area (low or zero alpha values) alone:
% This is done by weighting each color value of each pixel
% with the corresponding alpha-value in the backbuffer
% (GL_DST_ALPHA).
Screen('BlendFunction', w, GL_DST_ALPHA, GL_ZERO);
Screen('DrawTexture', w, nonfoveatex, [], ctRect);
% Step 3: Draw foveated image, but only where the
% alpha-value in the backbuffer is zero or low: This is
% done by weighting each color value with one minus the
% corresponding alpha-value in the backbuffer
% (GL_ONE_MINUS_DST_ALPHA).
Screen('BlendFunction', w, GL_ONE_MINUS_DST_ALPHA, GL_ONE);
Screen('DrawTexture', w, foveatex, sRect, dRect);
% Show final result on screen. This also clears the drawing
% surface back to black background color and a zero alpha
% value.
% Actually... We use clearmode=2: This doesn't clear the
% backbuffer, but we don't need to clear it for this kind
% of stimulus and it gives us 2 msecs extra headroom for
% higher refresh rates! For benchmark purpose, we disable
% syncing to retrace if hurryup is == 1.
vbl = Screen('Flip', w, 0, 2, 2*hurryup);
vbl = GetSecs;
tavg = tavg + (vbl-oldvbl);
oldvbl=vbl;
ncount = ncount + 1;
end;
end;
% Keep track of last gaze position:
mxold=mx;
myold=my;
% We wait 1 ms each loop-iteration so that we
% don't overload the system in realtime-priority:
WaitSecs(0.001);
% Abort demo on keypress our mouse-click:
if KbCheck | find(buttons) % break out of loop
break;
end;
end;
% Display full image a last time, just for fun...
Screen('BlendFunction', w, GL_ONE, GL_ZERO);
Screen('DrawTexture', w, foveatex);
Screen('Flip', w);
% The same command which closes onscreen and offscreen windows also
% closes textures.
Screen('CloseAll');
ShowCursor;
Priority(0);
tavg = tavg / ncount * 1000;
fprintf('End of GazeContingentDemo. Avg. redraw time is %f ms = %f Hz.\n\n', tavg, 1000 / tavg);
return;
catch
%this "catch" section executes in case of an error in the "try" section
%above. Importantly, it closes the onscreen window if its open.
Screen('CloseAll');
ShowCursor;
Priority(0);
psychrethrow(psychlasterror);
end %try..catch..
|