Created
February 26, 2015 10:00
-
-
Save codemonkey-uk/2a74eab11fe6d1539dce to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
for i in $( ls *.jpg ); do | |
echo -n , $i | |
done | |
echo | |
for i in $( ls *.jpg ); do | |
echo -n $i | |
for j in $( ls *.jpg ); do | |
echo -n , $(compare -metric PSNR $i $j difference.png 3>&1 1>&2- 2>&3-) | |
done | |
echo | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment