Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Histogram of an Image

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The histogram of a digital image with gray levels in the range [0, L-1] is a discrete function. 

Histogram Function: 

 

Histogram-Function

Points about Histogram: 
 

  • Histogram of an image provides a global description of the appearance of an image.
  • Information obtained from histogram is very large in quality.
  • Histogram of an image represents the relative frequency of occurrence of various gray levels in an image.

Let’s assume that an Image matrix is given as: 

 

Sample-Image-Matrix

This image matrix contains the pixel values at (i, j) position in the given x-y plane which is the 2D image with gray levels. 

There are two ways to plot a Histogram of an image: 

Method 1: In this method, the x-axis has grey levels/ Intensity values and the y-axis has the number of pixels in each grey level. The Histogram value representation of the above image is: 

 

Histogram-of-an-image-Method-1

Explanation: The above image has 1, 2, 3, 4, 5, 6, and 8 as the intensity values and the occurrence of each intensity value in the image matrix is 2, 1, 3, 2, 2, 3 and 3 respectively so according to intensity value and occurrence of that particular intensity we mapped them into a Graph. 

Method 2: In this method, the x-axis represents the grey level, while the y-axis represents the probability of occurrence of that grey level. 

Probability Function: 

 

Probability-Function

Below table shows the probability of each intensity level of an pixel 

 

probability-of-each-intensity-level

Now we can create a histogram graph for each pixel and corresponding occurrence probability. 

 

histogram-graph-for-the-each-pixel-and-corresponding-occurence-probability

 

My Personal Notes arrow_drop_up
Last Updated : 08 Feb, 2022
Like Article
Save Article
Similar Reads
Related Tutorials