Last active
November 4, 2017 07:13
-
-
Save kiki67100/efe29b0c3b787d298a363d5d94e83603 to your computer and use it in GitHub Desktop.
ImageMagick compare multiples images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Combine all images | |
convert -verbose *.jpg -combine diff.png | |
#Using fuss | |
compare -verbose -fuzz 2% photo-11-03-* diff.jpg | |
#Only show the difference | |
compare -verbose *.jpg -compose src diff.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment