Search found 2 matches

by michellexuf
2013-03-13T18:56:24-07:00
Forum: Magick++
Topic: Question about image comparison using Magick++
Replies: 2
Views: 9924

Re: Question about image comparison using Magick++

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 th...
by michellexuf
2013-03-07T12:07:18-07:00
Forum: Magick++
Topic: Question about image comparison using Magick++
Replies: 2
Views: 9924

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 hav...