I simply want to compare two images and know if they are visually different at all. (They will be the same size.)
I know of the AE compare metric, of IM image signatures... but what is the FASTEST method to do this?
Thanks for your consideration!
- J
Fastest Comparison Method?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Fastest Comparison Method?
I believe that AE is the fastest compare metric.
0.108s
0.113s
0.113s
0.132s
Code: Select all
time compare -metric AE logo.png logox.png null:
Code: Select all
time compare -metric PAE logo.png logox.png null:
Code: Select all
time compare -metric rmse logo.png logox.png null:
Code: Select all
time convert logo.png logox.png -compose difference -composite -format "%[fx:mean]" info:
Re: Fastest Comparison Method?
thanks so much! I didn't know of the "time" command! : )