[
About ImageMagick
Command-line Tools
Program Interfaces
] [ Install from Source Binary Releases Resources ] [ Download ] [ Links ] [ Sponsors Desktop Wallpaper ] |
Use the compare program to mathematically and visually annotate the difference between an image and its reconstruction. See Command Line Processing for advice on how to structure your compare command or see below for example usages of the command. We list a few examples of the compare command here to illustrate its usefulness and ease of use. To get started, lets compare an image to one thats been sharpened: convert rose.jpg -sharpen 0x1 reconstruct.jpg compare rose.jpg reconstruct.jpg difference.png The red areas of the difference image show which pixels were affected by the image sharpening, whereas, white is areas that were untouched by the sharpening process In addition to the visual interpretation of the difference in an image and its reconstruction, we report a mathematical measure of the difference : compare -metric PSNR rose.jpg reconstruct.jpg difference.png 29.5615 dB You can find additional examples of using compare in Graphics from the Command Line. Further discussion is available in More Graphics from the Command Line and Examples of ImageMagick Usage. The compare command recognizes these options. Click on an option to get more details about how that option works.
|