comparing images - listing pixel differences
Posted: 2009-02-09T17:28:19-07:00
when comparing two images, can anyone tell me how i might be able to list pixel differences?
for instance, i'd like to see something like a unix diff that i'll call myimdiff:
is anything like this possible?
thanks
for instance, i'd like to see something like a unix diff that i'll call myimdiff:
Code: Select all
$ myimdiff ref.png new.png
(12,34)
< RGB: 255 255 255
---
> RGB: 255 255 253
(56,78)
< RGB: 255 255 255
---
> RGB: 0 0 0
thanks