🔀 Simulator EP03_02: Alpha Blending of Two Images
g = α·f1 + (1−α)·f2
Adjust the transparency parameter α to observe the pixel-by-pixel weighted linear combination between images f1 and f2.
0.50
α = 0.00 → Only f2 | α = 0.50 → Equal Weighted Average | α = 1.00 → Only f1
Image f1
Image f2
Result g
Formula: clip(round(0.50 · f1 + 0.50 · f2))
Description: Figure 3.27: Simulator EP03_02: Alpha Blending of Two Images (g = α·f1 + (1−α)·f2)