File: MaskImageIn.m

package info (click to toggle)
psychtoolbox-3 3.0.19.14.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 86,796 kB
  • sloc: ansic: 176,245; cpp: 20,103; objc: 5,393; sh: 2,753; python: 1,397; php: 384; makefile: 193; java: 113
file content (39 lines) | stat: -rw-r--r-- 969 bytes parent folder | download | duplicates (6)
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
function mMasked=MaskImageIn(m,alphaIn)
% mMasked=MaskImageIn(m [,alphaIn])
%
% Accept an image matrix "m" and return "nMasked", holding the same image
% but with adjusted alpha values.  MaskImageIn sets full transparency
% for pixels with value zero and sets full opacity for pixels with
% non-zero value.
%
% If the optional alphaIn argument is specified then MaskImageIn sets
% non-zero pixels to alphaIn opacity instad of to full opacity, 255. 
%
% see also: SetImageAlpha, MaskImageOut, AlphaDemo. 

% HISTORY
%
% mm/dd/yy
%
% 1/28/05   awi  Wrote it.
% 5/02/13   mk   Made it hopefully work.

if nargin<2
   alphaIn = WhiteIndex(0);
end

dims=size(m);
numDims=length(dims);
if numDims > 3
    error('The matrix argument must have no more than three dimensions');
end

if numDims==2
    mMasked=repmat(m, [1, 1, 3]);
else
    mMasked=m;
end

sumPlanes=mMasked(:,:,1) + mMasked(:,:,2) + mMasked(:,:,3);
isNonZero=sumPlanes ~= 0;
mMasked(:,:,4)=isNonZero * alphaIn;