Could you help me to implement image comparison with metric PSNR in ImageMagick using Java API (JMagick) or C# API (Magick.Net).
The command is:
convert image1.jpg -resize WidthxHeight image2.jpg -metric PSNR -format "%[distortion]" -compare info:
I've tried to find something in documentation about JMagick here: http://www.jmagick.org/jmagick-doc/ and about Magick.NET here: http://magick.codeplex.com/documentation without result.
Thanks for your help.