ImageTools
Mask
mask the intensity of an image with another image
Calling Sequence
Parameters
Description
Examples
Mask( img, mask )
img
-
Image; image to be masked
mask
Image; transparency mask
The Mask command uses one image as an intensity mask for another image.
The img parameter specifies the image to be masked.
The mask parameter specifies the mask. It must be the same size as img.
The Mask operation consists of multiplying each pixel in img by the corresponding pixel in mask, and writing the result to the output image. This operation is commutative; interchanging the image and mask returns the same result.
Pixels with a value of 1.0 in the mask cause the corresponding img pixel to be copied verbatim into the output. Pixels of value 0.0 in the mask result in 0.0 in the output, regardless of the value of the corresponding image pixel.
For example, consider a mask M that gradually transitions from 1.0 on the left to 0.0 on the right. Using the Mask command with this mask and an image A produces an image that looks like A on the left, and becomes black on the right. Masking image B with the complement of M, Complement⁡M, produces an image that looks like B on the right, and fades to black on the left.
Combining these two images by simple addition, A+B, yields an image that fades from A to B as you move from left to right.
Any two images can be masked together. Where one image is lighter, the other shows through more, and vice-versa.
Masking a GrayImage with a ColorImage results in a ColorImage.
Masking a GrayImage with a ColorAImage results in a ColorAImage.
Masking a ColorImage with a ColorAImage results in a ColorAImage with alpha layer intensity equal to zero.
with⁡ImageTools:
A≔Create⁡1,10,background=−8
A≔−8.−8.−8.−8.−8.−8.−8.−8.−8.−8.
B≔Create⁡1,10,background=8
B≔8.8.8.8.8.8.8.8.8.8.
M≔Create⁡0,0,seq⁡0..1,0.2,1,1:
printf⁡%.1f\n,M
0.0 0.0 0.0 0.2 0.4 0.6 0.8 1.0 1.0 1.0
printf⁡%.1f\n,Mask⁡A,1−M+Mask⁡B,M
-8.0 -8.0 -8.0 -4.8 -1.6 1.6 4.8 8.0 8.0 8.0
See Also
ImageTools[Convolution]
Download Help Document