@prev_tutorial{tutorial_warp_affine} @next_tutorial{tutorial_histogram_calculation}
| | | | -: | :- | | Original author | Ana Huamán | | Compatibility | OpenCV >= 3.0 |
In this tutorial you will learn:
To accomplish the equalization effect, the remapping should be the cumulative distribution function (cdf) (more details, refer to Learning OpenCV). For the histogram \f$H(i)\f$, its cumulative distribution \f$H^{'}(i)\f$ is:
\f[H^{'}(i) = \sum_{0 \le j < i} H(j)\f]
To use this as a remapping function, we have to normalize \f$H^{'}(i)\f$ 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:
\f[equalized( x, y ) = H^{'}( src(x,y) )\f]
Downloadable code: Click here
Code at glance: @include samples/cpp/tutorial_code/Histograms_Matching/EqualizeHist_Demo.cpp @end_toggle
Downloadable code: Click here
Code at glance: @include samples/java/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHistDemo.java @end_toggle
Downloadable code: Click here
Code at glance: @include samples/python/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHist_Demo.py @end_toggle
Load the source image:
@add_toggle_cpp @snippet samples/cpp/tutorial_code/Histograms_Matching/EqualizeHist_Demo.cpp Load image @end_toggle
@add_toggle_java @snippet samples/java/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHistDemo.java Load image @end_toggle
@add_toggle_python @snippet samples/python/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHist_Demo.py Load image @end_toggle
Convert it to grayscale:
@add_toggle_cpp @snippet samples/cpp/tutorial_code/Histograms_Matching/EqualizeHist_Demo.cpp Convert to grayscale @end_toggle
@add_toggle_java @snippet samples/java/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHistDemo.java Convert to grayscale @end_toggle
@add_toggle_python @snippet samples/python/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHist_Demo.py Convert to grayscale @end_toggle
Apply histogram equalization with the function @ref cv::equalizeHist :
@add_toggle_cpp @snippet samples/cpp/tutorial_code/Histograms_Matching/EqualizeHist_Demo.cpp Apply Histogram Equalization @end_toggle
@add_toggle_java @snippet samples/java/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHistDemo.java Apply Histogram Equalization @end_toggle
@add_toggle_python @snippet samples/python/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHist_Demo.py Apply Histogram Equalization @end_toggle As it can be easily seen, the only arguments are the original image and the output (equalized) image.
Display both images (original and equalized):
@add_toggle_cpp @snippet samples/cpp/tutorial_code/Histograms_Matching/EqualizeHist_Demo.cpp Display results @end_toggle
@add_toggle_java @snippet samples/java/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHistDemo.java Display results @end_toggle
@add_toggle_python @snippet samples/python/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHist_Demo.py Display results @end_toggle
Wait until user exists the program
@add_toggle_cpp @snippet samples/cpp/tutorial_code/Histograms_Matching/EqualizeHist_Demo.cpp Wait until user exits the program @end_toggle
@add_toggle_java @snippet samples/java/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHistDemo.java Wait until user exits the program @end_toggle
@add_toggle_python @snippet samples/python/tutorial_code/Histograms_Matching/histogram_equalization/EqualizeHist_Demo.py Wait until user exits the program @end_toggle
-# 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.
-# 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!