Image Processing in Java | Set 12 ( Contrast Enhancement )
In this article we will learn how to enhance contrast of an image using OpenCV library. In order to enhance contrast histogram equalization techniques are used.
For more information about histogram equalization techniques refer to this paper.
At first we need to setup OpenCV for Java, we recommend to use eclipse for the same since it is easy to use and setup. For installation refer to http://docs.opencv.org/2.4/doc/tutorials/introduction/java_eclipse/java_eclipse.html
Now lets understand some of the methods required for contrast enhancement.
- equalizeHist(source, destination) – This method resides in Imgproc package of OpenCv. source parameter is 8-bit single channel source image, and the destination parameter is the destination image
- Imcodecs.imread()/Imcodecs.imwrite() – These methods are used to read and write images as Mat objects which are rendered by OpenCV.
// Java program to demonstrate contrast enhancement package ocv; import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class Main { public static void main( String[] args ) { try { // For proper execution of native libraries // Core.NATIVE_LIBRARY_NAME must be loaded before // calling any of the opencv methods System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); //input image Mat source = Imgcodecs.imread("E:\\input.jpg", Imgcodecs.CV_LOAD_IMAGE_GRAYSCALE); Mat destination = new Mat(source.rows(), source.cols(), source.type()); // applying histogram equalization Imgproc.equalizeHist(source, destination); // writing output image Imgcodecs.imwrite("E:\\output.jpg", destination); } catch (Exception e) { System.out.println("error: " + e.getMessage()); } } } |
Note: The code will not work in online ide since it requires image in hard drive.
Input.jpg

Output.jpg

This article is contributed by Pratik Agarwal. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Image Processing using OpenCV in Java | Set 13 (Brightness Enhancement)
- Image Processing using OpenCV in Java | Set 14 ( Sharpness Enhancement )
- Image Processing in Java | Set 4 (Colored image to Negative image conversion)
- Image Processing in Java | Set 3 (Colored image to greyscale image conversion)
- Image Processing in Java | Set 5 (Colored to Red Green Blue Image Conversion)
- Image Processing in Java | Set 7 (Creating a random pixel image)
- Image Processing in Java | Set 8 (Creating mirror image)
- Image Processing in Java | Set 11 (Changing orientation of image)
- Image Processing in Java | Set 10 ( Watermarking an image )
- Image Processing In Java | Set 2 (Get and set Pixels)
- Image Processing in Java | Set 9 ( Face Detection )
- Image Processing in Java | Set 14 ( Comparison of two images )
- Image Processing in Java | Set 1 (Read and Write)
- Getting started with Scikit-image: image processing in Python
- Histogram Equalisation in C | Image Processing



