Open In App
Related Articles

MATLAB | Display histogram of a grayscale Image

Improve Article
Improve
Save Article
Save
Like Article
Like

An image histogram is chart representation of the distribution of intensities in an Indexed image or grayscale image. It shows how many times each intensity value in image occurs.

Code #1: Display histogram of an image using MATLAB library function.




% Read an Image in MATLAB Environment
img=imread('apple.jpg');
  
% Convert image to grayscale image
# if read image is an RGB image
img=rgb2gray(img);
  
% Show histogram of image
# using imhist() function
imhist(img);


 
Code #2: Display Histogram of an Image without using MATLAB Library function.

Approach :

  • Read the source image file into image matrix
  • Convert it to grayscale, if it is an RGB image
  • Iterate over image matrix and count the frequency of every possible value of intensity
  • plot the counted frequency




% Read source image file 
img = imread('apple.jpg');
  
% Convert image to grayscale image 
img=rgb2gray(img);
  
% get the dimension of the image 
[x, y] = size(img);
  
  
% Create a frequency array of size 256
frequency = 1 : 256;
  
count = 0;
  
% Iterate over grayscale image matrix 
% for every possible intensity value
% and count them
    
for i = 1 : 256
    for j = 1 : x
        for k = 1 : y
  
            % if image pixel value at location (j, k) is i-1
            % then increment count
            if img(j, k) == i-1
                    count = count + 1;
            end
        end
    end
    % update ith position of frequency array with count
    frequency(i) = count;
  
    % reset count
    count = 0;
  
end
  
  
n = 0 : 255;
  
% Display Histogram
stem(n, frequency);
  
grid on;
ylabel('Number of pixels with such intensity levels -->');
xlabel('Intensity Levels  -->');
title('HISTOGRAM OF THE IMAGE');


Input:
Input Image

Output:
Histogram


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 26 Jan, 2019
Like Article
Save Article
Previous
Next
Similar Reads