🎚️ Simulator EP04_01: Global Thresholding
p' = (p > T) ? 255 : 0
👆 Click on a cell in the Original Input to darken the pixel (−30) and right-click to lighten (+30). Adjust the threshold T for binarization.
128
Original Input (Clickable)
Binarized Result (p')
Formula applied: (p > 128) ? 255 : 0
Description: Figure 4.30: EP04_01 Simulator: Global Thresholding by Fixed Threshold (p’ = (p > T) ? 255 : 0)