Open In App

Histogram of an Image

Improve
Improve
Like Article
Like
Save
Share
Report

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

 


Last Updated : 08 Feb, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads