Hello Mr. Magick,
Thanks for your reply.
What I'm doing is comparing two images with the setting of error metric, dissimilarity threshold, and colorFuzz.
The metric is "AbosoluteError", and the output should be a value which means the different pixel numbers between two images.
I've got the ...
Search found 2 matches
- 2013-03-13T18:56:24-07:00
- Forum: Magick++
- Topic: Question about image comparison using Magick++
- Replies: 2
- Views: 10563
- 2013-03-07T12:07:18-07:00
- Forum: Magick++
- Topic: Question about image comparison using Magick++
- Replies: 2
- Views: 10563
Question about image comparison using Magick++
Hello,
I'm doing the comparison between two images. First I tested the result using command line, which worked well.
convert $image1 -crop $area - | compare -dissimilarity-threshold 1 -fuzz 25% -metric AE $image2 -null: 2>result.txt
Then I need to do the same thing using Magick++. Here is what I ...
I'm doing the comparison between two images. First I tested the result using command line, which worked well.
convert $image1 -crop $area - | compare -dissimilarity-threshold 1 -fuzz 25% -metric AE $image2 -null: 2>result.txt
Then I need to do the same thing using Magick++. Here is what I ...