File: glmUnpackPixels.m

package info (click to toggle)
psychtoolbox-3 3.0.14.20170103%2Bgit6-g605ff5c.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 103,044 kB
  • ctags: 69,483
  • sloc: ansic: 167,371; cpp: 11,232; objc: 4,708; sh: 1,875; python: 383; php: 344; makefile: 207; java: 113
file content (27 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (4)
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
function unpackim = glmUnpackPixels( packim )

% glmUnpackPixels  Unpack an image read from the screen with glmGetPixels
% 
% usage:  unpackim = glmUnpackPixels( packim )

% 09-Dec-2005 -- created (RFM)

% ---protected---

if nargin~=1,
    error('invalid number of arguments');
end

% recover dimensions
mn=double(packim(end-3:end));
n=256*mn(1)+mn(2);
m=256*mn(3)+mn(4);
padn=mod( 4-mod(3*n,4) , 4 );

% reshape
im=reshape(packim(1:end-8),[ 3*n+padn m ]);
im=im(1:3*n,:);
im=cat(3,im(1:3:end,:),im(2:3:end,:),im(3:3:end,:));
unpackim=double(permute(flipdim(im,2),[ 2 1 3 ]));

return