when i add two images in opencv, sum is limited to 255. (Both images are of uint8)
ie 175+100 is 255 in opencv.
but if we add it using numpy.add function, result is not a limited one.
ie 175+100 is 19 in numpy.
Question:
1) Why it happen so?
2) Is there a way for np.add to behave like cv2.add? ie limit sum to 255?
Thanks in advance.