I am using imagemagick and this command:
Code: Select all
convert image1 image2 -compose Difference -composite \
-colorspace gray -format '%[fx:mean*100]' info:
When I compared two totally different images I still get a 8.37885.
So good people of Ask Ubuntu, can you provide me with a command that will measure the difference between files properly and give me a number from 0-100?
For example


Get 42.0838
Code: Select all
convert image1 image2 -compose Difference -composite -format '%[fx:mean*100]' info:
So it there something wrong with the command I use ?? If yes can you recommend alternative??
Thank you for your help. Thank You