ImageLevels gives a list of results for each channel. The result for each channel is a list of pairs, each giving the minimum value and count for a particular pixel value bin.
For binary images, ImageLevels[image] gives a result of the form .
ImageLevels by default takes the first bin to start at and the last one to end at . Channel values below or above are placed in the first and last bins, respectively.
ImageLevels takes the first bin to start at min, and the last bin to end at max.
ImageLevels[image, n, All] gives n equally spaced bins, extending over the complete range of values in each channel.
In ImageLevels, either min or max individually can be All.
ImageLevels gives the levels of image scaled to the range 0 to 255.
ImageLevels[image, All] returns a tally of all pixel values occurring in image.
ImageLevels puts pixels with values below the first bin into the first bin, and pixels with values above the last bin into the last bin. With an option setting False, pixels with values outside the range of bins are not counted.