G'MIC - GREYC's Magic for Image Computing: A Full-Featured Open-Source Framework for Image Processing
GREYC CNRS ENSICAEN UNICAEN

A Full-Featured Open-Source Framework for Image Processing



Latest stable version: 3.3.5        Current pre-release: 3.3.6 (2024/03/18)

Tutorial

Images as Data Sets

First and formost, G'MIC is a research tool. Many commands routinely produce images which are useful data sets, but do not span a range of values compatible with standard graphic file formats. Commonly, display will normalize such data sets so that your computer screen will show something, but the output command will not concomitantly write normalized data to the file. For all that G'MIC knows, you may want your data set in a non-standard range.

The display command does report a set of metrics for each image in the pipeline following the summary lines. Of particular interest are the maximum and minimum pixel values of each image. Some commands produce pixels that exceed the so-called normal range of image formats and, if output, these files will not work in other programs. One should always review the image metrics as well as the display window to ensure that an image is within the norms expected for the output format.

For example, we may harness the bandpass command to get only the very low frequency content of an image. Artistically, it furnishes a very distinctive pattern.

$ gmic images/example.png bandpass 0.005,0.01 print output img/ex_outofband.png

[gmic]./ Start G'MIC interpreter (v.3.3.4).
[gmic]./ Input file 'images/example.png' at position 0 (1 image 250x250x1x3).
[gmic]./ Apply bandpass filter [0.005,0.01] to image [0].
[gmic]./ Print image [0] = 'example.png'.
[0] = 'images/example.png':
size = (250,250,1,3) [732.4 Kio of float32].
data = (32.3932,30.1917,26.6988,22.0349,16.3936,10.0354,3.27492,-3.53619,-10.0321,-15.8582,-20.6981,-24.2991,-26.4937,-27.2155,-26.506,-24.513,-21.4779,-17.7158,-13.5869,-9.46395,-5.6991,-2.59197,-0.364067,0.858704,1.0532,0.295258,-1.25447,-3.37338,-5.80562,-8.29329,-10.6064,-12.568,-14.0718,-15.0905,-15.6733,-15.9343,-16.0335,-16.1518,-16.4648,-17.1188,-18.2106,-19.7761,-21.786,-24.1522,-26.7407,-29.3915,-31.9406,-34.2432,-36.1924,-37.733,-38.8671,-39.6521,-40.1906,-40.6136,-41.0609,-41.6598,-42.5066,-43.6518,-45.0938,-46.7786,-48.6083,-50.4556,-52.1825,-53.6608, ... ,-46.6073,-46.6591,-46.5288,-46.2742,-45.9283,-45.4865,-44.9001,-44.0786,-42.8997,-41.2271,-38.9335,-35.926,-32.1692,-27.7043,-22.6594,-17.2493,-11.7647,-6.55015,-1.97313,1.61202,3.90197,4.67928,3.84002,1.41076,-2.44766,-7.4503,-13.2116,-19.2798,-25.1788,-30.4529,-34.7095,-37.6556,-39.1231,-39.0817,-37.6369,-35.0146,-31.5331,-27.5669,-23.5057,-19.7136,-16.4919,-14.0514,-12.4938,-11.8067,-11.8702,-12.4749,-13.348,-14.185,-14.6836,-14.5749,-13.6506,-11.7826,-8.93431,-5.16218,-0.609599,4.50702,9.91729,15.319,20.4014,24.8671,28.452,30.9409,32.1793,32.0806).
min = -83.5938, max = 93.4782, mean = 1.7197e-09, std = 23.2746, coords_min = (188,0,0,1), coords_max = (167,120,0,0).
[gmic]./ Output image [0] as png file 'img/ex_outofband.png' (1 image 250x250x1x3).
[gmic]./ End G'MIC interpreter.

images/example.png bandpass 0.005,0.01 n 0,255img
How the display command depicts the output of the bandpass commandHow the output command writes bandpass data to disk

img
Pixel row 177, (red channel). Green curve: data from the left image, as it originally was in the image stack. Red curve: data from the right image, as it was written to disk

In this example, the data set resulting from the -bandpass command ranged from a minimum of -83.5938 – blacker than black – to a maximum of 93.4782. Following on, the -output command wrote a PNG file.

It so happens that PNG files usually consist of eight or sixteen bits per channel unsigned integers that range from 0 to 255 for eight bits or 0 to 65535 for sixteen bits. In the example, a default conversion from floating point to unsigned integers took place: so-called 'blacker than black' pixels, negative quantities, wrapped around to positive quantities, because, by definition, negative numbers cannot be represented in unsigned integer formats. In the conversion from floating point to unsigned integers, signed integers are an intermediary form. Negative signed integers are written in two's complement, with the most significant bit representing the sign and set to one to indicate a value less than zero. In eight bit channels, -1 has the two's complement representation of 11111111. This bit pattern has a very different meaning as an unsigned eight bit integer. In that interpretation, the most significant bit is not a sign, but represents the 27 binary place, 1111111 represents 255 among unsigned eight bit integers, not -1. In effect, the literal bit patterns are written to disk, but not the signed/unsigned interpretation. But for the width of the data channel, similar circumstances prevail for sixteen bit unsigned integer channels.

Opening the PNG file in one's favorite paint program gives rise to surprising results, all the 'blacker than black' intensities represented in the G'MIC preview as dark shades appear white or nearly white in one's favorite paint program, the conversion of negative 'blacker than black' values wrapping around through the virtual addition of  256, for eight bits, or 65,536 for sixteen bit files.

To visualize this, we graphed the red channel from one scan line of the example as it was originally in the image stack, and again after it was written to file encoded as unsigned eight bit integers. The green curve depicts the original data; the red depicts data on disk after conversion. So long as the original data were positive, the eight bit unsigned numerals on disk tracked their original floating point counterparts fairly closely, with only minor rounding error. Where the original data are negative, however, the corresponding file quantities swing abruptly positive, offset from the original by exactly 256. The blacker-than-black' values wrap around to white or very nearly white.

Visually, the data in the file is quite different than what the -display command showed. And yet, nothing is broken. Every command is strictly doing what it has been designed to do. The difficulty is that what they have been designed to do is not what we want. To really get what we want, we have to prepare data sets to be stored in standard graphic files, that is, knowing that a particular output format consists of unsigned integers ranging from 0 to 255. We then have to decide how to scale and offset data in a way that doesn't (much) change the data's visual representation.
Data Management
G'MIC commands have no knowledge (or concern) about the bandwidth of outputs. To give people some idea about what is going on, the G'MIC ' -display command implicitly normalizes pixel values to a range that the screen can accomodate, typically 0 – 255. This alteration can give rise to display values which are very different than the image stack values. To bridge this mismatch, the mouse pointer reports the actual pixel values as stored in G'MIC's image stack when the -display command is active and a specific image is selected.

At the end of the day, however, some decision needs to be made about an image being written to a file. The common choices are:

  1. Nothing
  2. Cut
  3. Normalize
Nothing
Nothing is pretty easy. G'MIC has its own native format, cimg, named after its core image processing library. It is a very simple, very accommodating format that will, as much as humanly possible, preserve numerical data - it stores pixels as floating point numerals, preserving the sign and as much of the precision of the data as the floating point format allows. It is also a multi-image format; an undecorated output command will write the entire image stack to one .cimg file. This is the best choice when you know you are not ready to display data as images yet, that you may very well have other operations in mind; maybe you aren't quite sure what those operations are yet. Writing the image stack out to a .cimg file essentially puts the entire stack on ice. Later on, when you know what you want to do with the data, you can input the .cimg file of your iced image stack and pick up where you left off. Writing a .cimg file is easy: simply name a file with a .cimg extension and the output command will do the rest.

The difficulty with doing nothing is that you probably can't display the data without distorting it in some fashion, and you most likely can't hand it off to a graphics program. If you are bent on displaying a data set, then you need to make some choices about the out-of-band values, i. e. those that fall outside of 0 – 255 for an eight bit PNG file. That is what the remaining choices are for.
Cut
If your image has pixels with channel values less than zero or greater than what your file format can accommodate, you can clip out-of-bounds data with the cut command, which takes a bottom and top clipping values. Pixel channel values falling below the lower bound are set to that boundary value. Similarly, pixel channel values above the upper bound are set to that value. The upside is that intermediary values are not changed, so channel values and the colors they form are undisturbed. The downside is that details conveyed by out of band channel values will be flattened to one or the other boundary and be lost.
Normalize
If details matter, the G'MIC normalize command may be harnessed to adjust minimum and maximum values to match the minimum and maximum values of the destination file format. The channel values stored in the file will be scaled to fit within the lower and upper boundaries, to wit:
R\;\frac{V_0 - V_\text{min}}{V_\text{max} - V_\text{min}}

where R is a desired upper boundary value and where zero will be the implied lower boundary value. You pick R to be apt for the destination file, V_\text{max} and V_\text{min} represent the largest and smallest channel values present in a pre-normalized image, and V_0 is a pre-normalized channel value of a pixel in need of adjustment. This ratio scales V_0 to a normalized value which will fall within 0.0 and R inclusive. This scheme will preserve details so long as the dynamic range of the original is not vastly larger than R. but original color relationships in will necessarily change.

The normalize command is not a panacea for all out-of-band ills, however. Images with high dynamic ranges would be ruined if constrained to eight bit unsigned integers; in this case, the EXR image format might be a better choice.

Updated: 07-May-2023 20:40 UTC Commit: 79f1223f76abc9d217cab05bf38ca89560b76ee6
G'MIC - GREYC's Magic for Image Computing: A Full-Featured Open-Source Framework for Image Processing

G'MIC is an open-source software distributed under the CeCILL free software licenses (LGPL-like and/or
GPL-compatible). Copyrights (C) Since July 2008, David Tschumperlé - GREYC UMR CNRS 6072, Image Team.