File: glmUnpackPixels.m

package info (click to toggle)
psychtoolbox-3 3.0.9%2Bsvn2579.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 63,408 kB
  • sloc: ansic: 73,310; cpp: 11,139; objc: 3,129; sh: 1,669; python: 382; php: 272; makefile: 172; 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