To convert an RGB into a greyscale
image, there are some general practices:
Y = .2126 * R^gamma + .7152 * G^gamma + .0722 * B^gammawhere gamma = 2.2 typically. This is the Y in XYZ color space. Followed by
L* = 116 * Y ^ 1/3 - 16in LAB color space, where L* "... aspires to perceptual uniformity ... closely matches human perception of lightness."
# mean sigma wav mean/sigma min max 1 0.228899 0.050121 090 4.57 -3.453089 2194.037842 2 0.273568 0.046089 150 5.94 -2.816395 1438.471313 3 0.220265 0.041095 200 5.36 -2.520102 1421.706177 4 0.133996 0.037056 277 3.62 -0.118913 323.830872 5 0.143088 0.023680 356 6.04 -0.005641 283.265594 6 0.378302 0.022430 444 16.87 0.000000 312.359680 first of all, all maps need to be smoothed to the same beam, since they are diffraction limited. After this they should be scaled to the same noise (sigma) asinh(x) = ln(x + sqrt(x*x+1)) fitscli -i map1.fits -o junk5.tiff -s asinh -k 10 -p 1000 -S 50 +--------------------------------------+-------------------------------+ | -b Black: -0.635749 | -w White: 5.396417 | | -k Background: 10.000000 | -p Peak: 1000.000000 | | -e Exponent: 0.500000 | -S Scaled Peak: 50.000000 | +-----------------+-------------+---------------+-------------+------------+ | Statistics | Min | Max | Mean | StDev | +-----------------+-------------+---------------+-------------+------------+ | Input Image: | -3.453089 | 2194.037842 | 0.290447 | 2.277242 | | Scaled Image: | -0.635749 | 5.396417 | -0.472900 | 0.036261 | +-----------------+-------------+---------------+-------------+------------+ fitscli -i map1.fits -o junk4.tiff -s asinh -k -10 -p 4000 -S 50 +--------------------------------------+-------------------------------+ | -b Black: 0.081542 | -w White: 4.007001 | | -k Background: -10.000000 | -p Peak: 4000.000000 | | -e Exponent: 0.500000 | -S Scaled Peak: 50.000000 | +-----------------+-------------+---------------+------------+------------+ | Statistics | Min | Max | Mean | StDev | +-----------------+-------------+---------------+------------+------------+ | Input Image: | -3.453089 | 2194.037842 | 0.290447 | 2.277242 | | Scaled Image: | 0.081542 | 4.007001 | 0.127890 | 0.013286 | +-----------------+-------------+---------------+------------+------------+
https://noirlab.edu/public/products/fitsliberator/
8-jun-98 V0.0 ancient version PJT 10-may-10 V0.1 made it produce something PJT