/usr/share/psychtoolbox-3/PsychDemos/ImagingStereoMoviePlayer.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 | function ImagingStereoMoviePlayer(moviefile, stereoMode, imaging, anaglyphmode, screenid)
% ImagingStereoMoviePlayer(moviefile [,stereoMode=8] [,imaging=1] [,anaglyphmode=0] [,screenid=max])
%
% Minimalistic movie player for stereo movies. Reads movie from file
% 'moviefile'. Left half of each movie video frame must contain left-eye
% image, whereas right half of each frame must contain right-eye image.
%
% 'stereoMode' mode of presentation, defaults to mode 8 (Red-Blue
% Anaglyph). 'imaging' if set to 1, will use the Psychtoolbox imaging
% pipeline for stereo display -- allows to set gains for anaglyph stereo
% and other more advanced anaglyph algorithms.
%
% 'anaglyphmode' when imaging is enabled, allows to select the type of
% anaglyph algorithm:
%
% 0 = Standard anaglyphs.
% 1 = Gray anaglyphs.
% 2 = Half-color anaglyphs.
% 3 = Optimized color anaglyphs.
% 4 = Full color anaglyphs.
%
% See "help SetAnaglyphParameters" for further description and references.
%
% 'screenid' Screen id of target display screen (on multi-display setups).
% By default, the screen with maximum id is used.
%
% The left image is centered on the screen, the right images position can
% be moved by moving the mouse cursor to align for inter-eye distance.
%
% Press any key to quit the viewer.
% History:
% 11.11.2007 Written (MK)
AssertOpenGL;
benchmark=0;
if nargin < 1
error('You must at least provide the name of the movie file for stereo pair.');
end
if nargin < 2
stereoMode = [];
end
if isempty(stereoMode)
stereoMode = 8;
end
if nargin < 3
imaging = [];
end
if isempty(imaging)
imaging = 1;
end
if imaging > 0
imaging = kPsychNeedFastBackingStore;
end
if nargin < 4
anaglyphmode = [];
end
if isempty(anaglyphmode)
anaglyphmode = 0;
end
if nargin < 5
screenid = [];
end
if isempty(screenid)
screenid = max(Screen('Screens'));
end
[win, winRect] = Screen('OpenWindow', screenid, 0, [], [], [], stereoMode, [], imaging);
modestr = [];
if imaging
% Set color gains. This depends on the anaglyph mode selected:
switch stereoMode
case 6,
SetAnaglyphStereoParameters('LeftGains', win, [1.0 0.0 0.0]);
SetAnaglyphStereoParameters('RightGains', win, [0.0 0.6 0.0]);
case 7,
SetAnaglyphStereoParameters('LeftGains', win, [0.0 0.6 0.0]);
SetAnaglyphStereoParameters('RightGains', win, [1.0 0.0 0.0]);
case 8,
SetAnaglyphStereoParameters('LeftGains', win, [0.4 0.0 0.0]);
SetAnaglyphStereoParameters('RightGains', win, [0.0 0.2 0.7]);
case 9,
SetAnaglyphStereoParameters('LeftGains', win, [0.0 0.2 0.7]);
SetAnaglyphStereoParameters('RightGains', win, [0.4 0.0 0.0]);
otherwise
%error('Unknown stereoMode specified.');
end
if stereoMode > 5 && stereoMode < 10
switch anaglyphmode
case 0,
% Default anaglyphs, nothing to do...
modestr = 'Standard anaglyphs';
case 1,
SetAnaglyphStereoParameters('GrayAnaglyphMode', win);
modestr = 'Gray anaglyph rendering';
case 2,
SetAnaglyphStereoParameters('HalfColorAnaglyphMode', win);
modestr = 'Half color anaglyph rendering';
case 3,
SetAnaglyphStereoParameters('OptimizedColorAnaglyphMode', win);
modestr = 'Optimized color anaglyph rendering';
case 4,
SetAnaglyphStereoParameters('FullColorAnaglyphMode', win);
modestr = 'Full color anaglyph rendering';
otherwise
error('Invalid anaglyphmode specified!');
end
overlay = SetAnaglyphStereoParameters('CreateMonoOverlay', win);
Screen('TextSize', overlay, 24);
DrawFormattedText(overlay, ['Loading file: ' moviefile ], 0, 0, [255 255 0]);
end
end
% Low level benchmarking of performance of anaglyph conversion:
if benchmark
while KbCheck; end;
count = 0;
t1=Screen('Flip', win);
while ~KbCheck
count = count + 1;
Screen('Flip', win,[],0,2);
end
t2=Screen('Flip', win);
avg = (t2 - t1) / count * 1000 %#ok<NOPRT,NASGU>
sca;
return;
end
% Initial flip:
Screen('Flip', win);
% Open movie file and start playback:
movie = Screen('OpenMovie', win, moviefile);
Screen('PlayMovie', movie, 1, 1, 1);
% Position mouse on center of display:
[x , y] = RectCenter(winRect);
SetMouse(x, y, win);
% Hide mouse cursor:
HideCursor;
% Setup variables:
tex = 0;
imgrect = [];
if ~isempty(modestr)
Screen('FillRect', overlay, [0 0 0 0]);
DrawFormattedText(overlay, ['File: ' moviefile '\nOpmode: ' modestr], 0, 0, [255 255 0]);
end
try
% Playback loop: Run until keypress or error:
while ~KbCheck && tex~=-1
% Fetch next image from movie:
tex = Screen('GetMovieImage', win, movie, 1);
% Valid image to draw?
if tex>0
% Query mouse position:
x = GetMouse(win);
% Setup drawing regions based on size of first frame:
if isempty(imgrect)
imgrect = Screen('Rect', tex) ;
imglrect = [0, 0, RectWidth(imgrect)/2, RectHeight(imgrect)];
imgrrect = [RectWidth(imgrect)/2, 0, RectWidth(imgrect), RectHeight(imgrect)];
sf = min([RectWidth(winRect)/RectWidth(imglrect) , RectHeight(winRect)/RectHeight(imglrect)]);
dstrect = ScaleRect(imglrect,sf,sf);
end
% Left eye image == left half of movie texture:
Screen('SelectStereoDrawBuffer', win, 0);
Screen('DrawTexture', win, tex, imglrect, CenterRect(dstrect, winRect));
Screen('SelectStereoDrawBuffer', win, 1);
% Draw right image centered on mouse position -- mouse controls image
% offsets:
Screen('DrawTexture', win, tex, imgrrect, CenterRectOnPoint(dstrect, x, y));
% Show at next retrace:
Screen('Flip', win);
% Release old image texture:
Screen('Close', tex);
tex = 0;
end
% Next frame...
end
% Done with playback:
% Show mouse cursor:
ShowCursor;
% Stop and close movie:
Screen('PlayMovie', movie, 0);
Screen('CloseMovie', movie);
% Close screen:
Screen('CloseAll');
return;
catch
ShowCursor;
Screen('CloseAll');
psychrethrow(psychlasterror);
end
|