Page 2 of 2

Re: Compare specific region in an image

Posted: 2016-03-03T10:15:30-07:00
by fmw42
Perhaps the region you specified covers that area also. Make sure it does not.

Look at an output image create by

Code: Select all

convert \
\( ActivityScreenError1.png -size 1080x1925 xc:black -geometry +205+77 -compose over -composite \) \
\( ActivityScreenError.png -size 1080x1925 xc:black -geometry +205+77 -compose over -composite \) \
miff:- | compare -metric PAE - compare.png
To see where they differ.

Re: Compare specific region in an image

Posted: 2016-03-03T16:24:49-07:00
by anthony
Same but doing multi-image (Layer) composition with a single mask image
http://www.imagemagick.org/Usage/anim_m ... ite_single

Code: Select all

convert ActivityScreenError.png ActivityScreen.png null: \
        -size 1080x1925 xc:black \
        -geometry +205+77 -compose over -layer \
        -metric PAE -compare -format "%[distortion]" info:

Re: Compare specific region in an image

Posted: 2016-03-09T01:43:12-07:00
by saikrishna
any help on this pls

Re: Compare specific region in an image

Posted: 2016-03-09T04:35:33-07:00
by snibgo
What help do you need?