Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I use this command line to show some stats that I need from my images because I only need mean/min/max/std.dev and bit depth of all channels:
And I need rmse values only, not the one that goes from 0-1 or 0-255
With "%[fx:mean.r]" I get decimals from 0 to 1 but I need the integer values from 0 to 65535 (with 16bit images) as seen in the verbose output. I need this numbers because they are standart in astronomical software.
You can also do that with %[mean] after selecting the red channel. See http://www.imagemagick.org/script/escape.php %[fx: ... ] results in values between 0 and 1. %{statistic] gives values between 0 and quantumrange, where quantumrange depends upon your IM Q level. For Q16, the values will be 0 to 65535.