You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's pretty evident that after application of addition operator on two equal sized images, resulting pixel intensity values may be out of range ( > 255 ), which can't be stored in a 24-bit RGB image. For putting pixel intensities in [0, 255] range, we can consider either of following two ways
All pixel intensities < 0, becomes 0 and > 255, becomes 255. [ Clipping ]
We'll simply apply modulus ( % ) 256, to put all pixel intensities back to range. [ Scaling ]