Is there any way to subtract two images in python opencv2 ?
Try background subtraction.
Use cv2.subtract(img1,img2) instead of arithmetic operation, as cv2 will take care of negative values.
cv2.subtract(img1,img2)