The current image stack may be stored on disk and reloaded later-on for presentation purposes. Please note that loading a stored image stack requires the same data file to be loaded as when the image stack has been stored. Loading the image stack anyway might cause problems (either a missing background photo or a mismatch of the scaled layers).
Combination |
Explanation |
Add |
Adds the background image B and the layer L; the intensities of both B and L are scaled by the factor w [0..100]. Each color component (red, green, blue) is added separately and the results are clipped to avoid overflow effects:
result := (w*L+(100-w)*B)/100
|
Difference |
Computes the absolute difference the background image B and the layer L. the intensity of the layer L can be scaled by the factor w [0..100]: result := abs(B-L*w/100)
|
Exclusion |
The resulting image is formed by adding the background and the foreground image and subtracting the properly scaled product of the background and foreground image. The foreground image is scaled by the factor w [0..100]: result := B + F*w/100 - F*w/100*B/128
|
Max |
Calculates the maximum of the background image B and the layer L; the intensity of the layer L can be scaled by the factor w [0..100]: result := max(B,w*L/100) |
Min |
Calculates the minimum of the background image B and the layer L; the intensity of the layer L can be scaled by the factor w [0..100]: result := min(B,w*L/100) |
Multiply |
Multiplies background image B and the layer L; the intensity of the layer L can be scaled by the factor w [0..100]: result := B*L*w/100
|
Opaque |
The layer L is opaque, all layers below L are hidden. |
Sub |
Subtracts the layer L from the background image B; the intensities of L can be scaled by the factor w [0..100]. Each color component (red, green, blue) is subtracted separately and the results are clipped to avoid underflow effects:
result := B-w*L/100
|
WhiteMix |
Mixes the background image B with gray/white of different lightness; the intensities of the background image B and the white area A are weighted by the factor w [0..100] in a way that the background images fades out towards white with increasing w:
result := (w*A+(100-w)*B)/100
|
HSI Fusion |
The image fusion is performed by combining the intensity information of the background image B and the hue and saturation of the image layer L. A weighting factor w of zero results in a combined image which receives the entire intensity information from the background photo. Please note that HSI fusion is not transparent to lower layers (i.e. the top layer using HSI fusion controls the colors of the fused image).
|
Brovey |
The Brovey algorithm performs a color-normalized sharpening. The weighting factor controls how much of the HSI information is injected into the high resolution background image.
|