pnmhistmap reads a PNM image as input and produces an image showing a histogram of the color (or gray) values in the input. A graymap (PGM) input produces a PBM output. A pixmap (PPM) input produces PPM output with three overlaid histograms: a red one for the red input, a green one for the green input, and a blue one for the blue input. The output is fixed in size: 256 pixels wide by 200 pixels high.
If the input is PBM, pnmhistmap produces an error message and no output image.
The -black and -white options, which can be used seperately or together, are useful for images with a large percentage of pixels whose value is zero or 255, which can cause the remaining histogram data to become unreadbaly small. Note that, for pixmap inputs, these options apply to all colors; if, for example, the input has a large number of bright-red areas, you will probably want to use the -white option.
You can abbreviate any option to its shortest unique prefix.
pnmhistmap assumes maxval is always 255. Images with a smaller maxval will only use the lower-value side of the histogram. You can overcome this either by piping the input through pnmdepth or by cutting and scaling the lower-value side of the histogram. Neither is a particularly elegant solution to the problem.
The program does not allow you to specify the output size.
Wilson H. Bent. Jr. (whb@usc.edu).