We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The diff image should look like this
base_image_gray = cv2.cvtColor(np.array(base_image), cv2.COLOR_RGB2GRAY) near_duplicate_img_gray = cv2.cvtColor(np.array(near_duplicate_img), cv2.COLOR_RGB2GRAY) diff_map = cv2.absdiff(base_image_gray, near_duplicate_img_gray)
Also, need to keep in mind, how to show differences if there are more than 2 images
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The diff image should look like this
Also, need to keep in mind, how to show differences if there are more than 2 images
The text was updated successfully, but these errors were encountered: