Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
ImageTools[Mask] - mask the intensity of an image with another image
Calling Sequence
Mask( img, mask )
Parameters
img
-
Image; image to be masked
mask
Image; transparency mask
Description
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, , produces an image that looks like B on the right, and fades to black on the left.
Combining these two images by simple addition, , 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.
Examples
0.0 0.0 0.0 0.2 0.4 0.6 0.8 1.0 1.0 1.0
-8.0 -8.0 -8.0 -4.8 -1.6 1.6 4.8 8.0 8.0 8.0
See Also
ImageTools, ImageTools[Convolution]
Download Help Document