User guide

224
Control (UI) Default Value Function
operation ImageMultiply If you don't want layer the images together using the
ImageMultiply compositing operation, select the operation to
use instead.
The following conventions apply to the below operation
descriptions:
F refers to the fg input.
f refers to the fg input's alpha channel.
B refers to the bg input.
b refers to the bg input's alpha channel.
The available operations (based on the Porter & Duff paper) are:
ImageAtop - Fb+B(1-f). This shows the shape of the
background, with the foreground covering the background
where the images overlap.
ImageAverage - (F+B)/2. This produces the average of the
two images. The result is darker than the original images, but
accentuates highlights.
ImageDifference - abs(F-B). This shows how much the pixels
differ and is useful for comparing two very similar images.
ImageDivide - B/F. This divides the background values by the
foreground values.
ImageExclusion - F+B-2FB. This is a more photographic form
of ImageDifference.
ImageFrom - F-B. This subtracts the background from the
foreground. For subtracting the foreground from the
background instead, see ImageMinus.
ImageGeometric - 2FB/(F+B). This is another way of
averaging two images. Visually, it's close to ImageMin.
ImageHypot - sqrt(F*F+B*B). This resembles the ImageAdd
and ImageScreen operations. The result is not as bright as
ImageAdd, but brighter than ImageScreen. ImageHypot
works with values above 1. It can be is useful for adding
reflections, as an alternative to ImageScreen.
4 NODES I-K | IMAGEMULTIPLY