Hello
I'm not sure how to explain this but I'll try my best
I have a two lists of slightly different images
(both lists are images of a website with css animations started at the same time and you almost can't tell the difference with the naked eye)
So I tried the compare feature, and it worked wonderful
But is there a way to only get BIG differences between two images?
Here is an example of two images:
The first one
The second one
The difference I get
Thanks
Compare two images, but gently
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Compare two images, but gently
Some comparison metrics can use fuzz:
Code: Select all
compare -metric AE -fuzz 2% redcar1.jpg redcar2.jpg out.png
snibgo's IM pages: im.snibgo.com
Re: Compare two images, but gently
This is what I was looking for!snibgo wrote: ↑2018-10-16T04:18:56-07:00 Some comparison metrics can use fuzz:Code: Select all
compare -metric AE -fuzz 2% redcar1.jpg redcar2.jpg out.png
Thanks a lot