OpenCV  4.5.2
Open Source Computer Vision
Histogram Equalization

Prev Tutorial: Affine Transformations
Next Tutorial: Histogram Calculation

Original author Ana Huamán
Compatibility OpenCV >= 3.0

Goal

In this tutorial you will learn:

  • What an image histogram is and why it is useful
  • To equalize histograms of images by using the OpenCV function cv::equalizeHist

Theory

What is an Image Histogram?

  • It is a graphical representation of the intensity distribution of an image.
  • It quantifies the number of pixels for each intensity value considered.

What is Histogram Equalization?

  • It is a method that improves the contrast in an image, in order to stretch out the intensity range (see also the corresponding Wikipedia entry).
  • To make it clearer, from the image above, you can see that the pixels seem clustered around the middle of the available range of intensities. What Histogram Equalization does is to stretch out this range. Take a look at the figure below: The green circles indicate the underpopulated intensities. After applying the equalization, we get an histogram like the figure in the center. The resulting image is shown in the picture at right.

How does it work?

  • Equalization implies mapping one distribution (the given histogram) to another distribution (a wider and more uniform distribution of intensity values) so the intensity values are spread over the whole range.
  • To accomplish the equalization effect, the remapping should be the cumulative distribution function (cdf) (more details, refer to Learning OpenCV). For the histogram \(H(i)\), its cumulative distribution \(H^{'}(i)\) is:

    \[H^{'}(i) = \sum_{0 \le j < i} H(j)\]

    To use this as a remapping function, we have to normalize \(H^{'}(i)\) such that the maximum value is 255 ( or the maximum value for the intensity of the image ). From the example above, the cumulative function is:

  • Finally, we use a simple remapping procedure to obtain the intensity values of the equalized image:

    \[equalized( x, y ) = H^{'}( src(x,y) )\]

Code

  • What does this program do?
    • Loads an image
    • Convert the original image to grayscale
    • Equalize the Histogram by using the OpenCV function cv::equalizeHist
    • Display the source and equalized images in a window.

Explanation

  • Load the source image:
  • Convert it to grayscale:

As it can be easily seen, the only arguments are the original image and the output (equalized) image.

  • Display both images (original and equalized):
  • Wait until user exists the program

Results

  1. To appreciate better the results of equalization, let's introduce an image with not much contrast, such as:

    which, by the way, has this histogram:

    notice that the pixels are clustered around the center of the histogram.

  2. After applying the equalization with our program, we get this result:

    this image has certainly more contrast. Check out its new histogram like this:

    Notice how the number of pixels is more distributed through the intensity range.

Note
Are you wondering how did we draw the Histogram figures shown above? Check out the following tutorial!
cv::String
std::string String
Definition: cvstd.hpp:150
cv::cvtColor
void cvtColor(InputArray src, OutputArray dst, int code, int dstCn=0)
Converts an image from one color space to another.
cv::samples::findFile
cv::String findFile(const cv::String &relative_path, bool required=true, bool silentMode=false)
Try to find requested data file.
cv::waitKey
int waitKey(int delay=0)
Waits for a pressed key.
highgui.hpp
cv::imread
Mat imread(const String &filename, int flags=IMREAD_COLOR)
Loads an image from a file.
cv::Mat::empty
bool empty() const
Returns true if the array has no elements.
imgcodecs.hpp
cv::equalizeHist
void equalizeHist(InputArray src, OutputArray dst)
Equalizes the histogram of a grayscale image.
cv::dnn::print
static void print(const MatShape &shape, const String &name="")
Definition: shape_utils.hpp:198
cv::imshow
void imshow(const String &winname, InputArray mat)
Displays an image in the specified window.
cv::Mat
n-dimensional dense array class
Definition: mat.hpp:801
cv::imshow
void imshow(const String &winname, const ogl::Texture2D &tex)
Displays OpenGL 2D texture in the specified window.
cv::CommandLineParser
Designed for command line parsing.
Definition: utility.hpp:799
cv::IMREAD_COLOR
@ IMREAD_COLOR
If set, always convert image to the 3 channel BGR color image.
Definition: imgcodecs.hpp:72
cv::COLOR_BGR2GRAY
@ COLOR_BGR2GRAY
convert between RGB/BGR and grayscale, color conversions
Definition: imgproc.hpp:551
cv
"black box" representation of the file storage associated with a file on disk.
Definition: affine.hpp:51
imgproc.hpp