Histogram - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ImageTools

  

Histogram

  

compute a histogram for each layer of an image

 

Calling Sequence

Parameters

Options

Description

Examples

Calling Sequence

Histogram( img, buckets, opts )

Parameters

img

-

Image; input image

buckets

-

(optional) posint; number of buckets/bins in the histogram (per layer)

opts

-

(optional) equation(s) of the form option = value; specify options for the Histogram command

Options

• 

autorange = truefalse

  

If true, set the range to the minimum and maximum values that occur in the image (on all layers).  Overrides the range option. The default is false.

• 

centers = truefalse

  

If true, return two elements: the Vector (or Matrix) corresponding to the histogram, and a Vector corresponding to the center value of each bucket in the histogram. The default is false.

• 

cumulative = truefalse

  

Specifies that the count in each bucket is to include the counts in all the lower numbered buckets.  This is especially useful in conjunction with the normalized option causing each bucket to end up containing a value indicating which fraction of the pixels in the image were less than or equal to the upper bound of the bucket. By selecting an appropriate number of buckets (4, 5, 100), the values correspond to concepts like quartiles, quintiles, and percentiles. The default is false.

• 

normalized = truefalse

  

If true, the value in each bucket of each layer is scaled so that the sum of the values in the buckets in a layer is 1.0. The default is false.

• 

range = numeric .. numeric

  

Assigns the range of values that the buckets cover. The default is 0.0 .. 1.0, which corresponds to the range of values in an unprocessed image.

Description

• 

The Histogram command computes a histogram of the intensity of each layer of an image, and returns a Vector (for one-layer images) or Matrix (for multi-layer images) containing the histogram information.

• 

The img parameter specifies the image.

• 

The optional buckets parameter specifies the number of buckets per color channel desired. For most images, which were originally read from 8-bit per channel image files, the default of 256 is a suitable value.

• 

For a single layer (grayscale) image, the Histogram command returns a column Vector with buckets elements. For multi-layer images, a buckets x N Matrix is returned, where N is the number of layers.

Examples

withImageTools:

Create a grayscale image with intensity varying from 1/4 to 3/4.

imgCreate100,200,r,cevalf12+sinπr508+cosπc1008:

Histogramimg,10

0.0.1339.3278.5324.5442.3278.1339.0.0.

(1)

Histogramimg,10,autorange,centers

1339.1510.1768.2146.3178.3296.2146.1768.1510.1339.,0.2750000000000000.3250000000000000.3750000000000000.4250000000000000.4750000000000000.5250000000000000.5750000000000000.6250000000000000.6750000000000000.725000000000000

(2)

Histogramimg,10,range=0..0.5,centers

0.0.0.0.0.1339.1510.1768.2146.13237.,0.02500000000000000.07500000000000000.1250000000000000.1750000000000000.2250000000000000.2750000000000000.3250000000000000.3750000000000000.4250000000000000.475000000000000

(3)

Histogramimg,10,range=0..0.5,normalized

0.0.0.0.0.0.06695000000000000.07550000000000000.08840000000000000.1073000000000000.661850000000000

(4)

See Also

ImageTools

ImageTools[PlotHistogram]