This module attempts to enhance contrast of a given image by equalizing its two dimensional histogram.


Keywords
python, histogram, image-processing, contrast-enhancement, histogram-equalization, image-contrast-enhancement, imhist, 2dhist, hist2d, im2dhisteq, two-dimensional-histogram
License
GPL-3.0
Install
pip install im2dhisteq==0.0.10

Documentation

PyPI Latest Release Package Status Downloads License Repository Size

im2dhisteq

This module attempts to enhance contrast of a given image by equalizing its two dimensional histogram. An easy way to enhance quality of a given image is to just equalize its histogram, but despite using minimum resources and a very short process time, there are a lot of drawbacks to it. One of the ways to tackle drawbacks of histogram equalization method is to instead equalize the image's two dimensional histogram, as one dimensional histogram of a given image does not contain the image's contextual information. Tests on a multitude of images has shown, by taking contextual information of an image in addition to the image's histogram into account when attempting to enhance contrast, output images are significantly better in quality in compare to histogram equalizaion and a handful of other known methods.

You can access the article that came up with this method here.

Two Dimensional Histogram

Here is the source code for the im2dhist python library with a short description on how it's done.

Installation

Run the following to install:

pip install im2dhisteq

Usage

For images

im2dhisteq --input 'cloudy-day.jpg' --output 'assets/cloudy-day-2dhisteq.jpg' --w 6

For videos

vid2dhisteq --input 'video-input.mp4' --output 'video-output-enhanced.mp4' --w 6

Speed up

The speed of the program can be significantly increased if the go library lib-im2dhist.go in src/go_libs in the package is compiled and moved to a dir in the system path. To compile, first make sure go is installed on your system. Then run

go mod init lib-im2dhist.go
go mod tidy

followed by running the script make-library.

Download binary

Instead of compiling the go library lib-im2dhist.go, you can download the library based on your system configuration:

Showcase