|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
ImageMultiply[image, x]
multiplies each channel value in image by a factor x.
ImageMultiply[image1, image2]
gives an image in which each pixel is the product of the corresponding pixels in
and
.
DetailsDetails
- The image returned by ImageMultiply[image, ...] has the same dimensions as image.
- If the image dimensions are different, ImageMultiply[image1, image2] multiplies
into the center of
. - If
or
is a single-channel image, its values are multiplied by the values in each channel of the other image in ImageMultiply[image1, image2]. - If
and
are both multichannel images, the values in each channel are multiplied separately. - In ImageMultiply[image, x], x can be a number, a color, or a list of color channel values.
- In ImageMultiply[image, x], the number x is normally in the range 0 to 1.
- ImageMultiply[image, x] gives an image with the same underlying data type as image, clipping or truncating values if necessary.
- ImageMultiply[image1, image2] gives an image with the largest type of either
or
, clipping or truncating values if necessary. - For binary images, ImageMultiply effectively finds the logical AND of pixel values.
- ImageMultiply works with Image3D objects.
New in 7 | Last modified in 9
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »




