⬛ Simulator EP03_05: Binary AND Mask
g = f AND m
Click on the cells of the Mask m to toggle between pass-through (255) and blocking (0), applying the logical operation pixel by pixel.
Image f (0–255)
Mask m (Click to Toggle)
Result g = f AND m
—
—preserved
—zeroed
—visible
Legend:
255
Pass-through (preserved)
0
Blocking (zeroed)
g(i,j) = f(i,j) & m(i,j)
Description: Figure 3.30: EP03_05 Simulator: Binary AND Mask Application