Skip to content

Instantly share code, notes, and snippets.

@palaniraja
Created May 2, 2018 02:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save palaniraja/00d1e4ed491f40bbaf44e2a801cffb10 to your computer and use it in GitHub Desktop.
Save palaniraja/00d1e4ed491f40bbaf44e2a801cffb10 to your computer and use it in GitHub Desktop.
image magick - image diff in batches
# 62 is the no. of images (1.png ... 62.png in "v1/v2" directory)
for i in $(seq 62 $END); do magick compare ../v1/$i.png ../v2/$i.png diff-$i.png; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment