This module attempts to enhance contrast of a given image by employing a method called HBLPCE.
Project description
imhblpce
This module attempts to enhance contrast of a given image by employing a method called HBLPCE [Histogram-Based Locality-Preserving Contrast Enhancement]. This method enhances contrast of an image through equalizing its histogram, while keeping an eye on histogram's general shape, to conserve overall brightness and prevent excessive enhancement of the image.
You can access the article that came up with this method here.
Through formulating their approach, a minimization problem is introduced and solved using cvxpy library in python.
Installation
Run the following to install:
pip install imhblpce
Usage
import numpy as np
import cv2
from imhblpce import imhblpce
def imresize(img, wr=500, hr=None): # This is just for imshow-ing images with titles
[ h, w, d] = img.shape
hr = (h*wr)//w if not hr else hr
img_resized = cv2.resize(img, dsize=(wr, hr))
return img_resized
def main():
image_name = 'assets/Countryside.jpg'
image = cv2.imread(image_name)
# converts rgb image to hsv
hsv_image = cv2.cvtColor(image, cv2.COLOR_BGR2HSV)
v_image = hsv_image[:, :, 2]
v_image_hblpce = imhblpce(v_image)
hsv_image_hblpce = hsv_image.copy()
hsv_image_hblpce[:, :, 2] = v_image_hblpce
image_hblpce = cv2.cvtColor(hsv_image_hblpce, cv2.COLOR_HSV2BGR)
# This is just for imshow-ing images with titles
cv2.imshow('Original Image', imresize(image))
cv2.imshow('HBLPCE-d Image', imresize(image_hblpce))
cv2.waitKey(0)
if __name__ == '__main__': main()
Or
imhblpce --input 'Countryside.jpg' --output 'Countryside-imhblpce.jpg'
Showcase
This is a sample image
The sample image enhanced by HBLPCE method
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file imhblpce-1.0.0.tar.gz.
File metadata
- Download URL: imhblpce-1.0.0.tar.gz
- Upload date:
- Size: 3.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c895750b11563635e1d67e4a0b320c079416168050296be8b77f04c6afe3db1
|
|
| MD5 |
ee0c79c2063fe599b83d882b293322af
|
|
| BLAKE2b-256 |
159aa81700f4664004d8a8b75e76a85174aa706c31a35a734965ef1c3164b558
|
File details
Details for the file imhblpce-1.0.0-py3-none-any.whl.
File metadata
- Download URL: imhblpce-1.0.0-py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4144520a9669199f65c68c530fd9c403220c44228dac3a2da4fc614d5451df4
|
|
| MD5 |
b48477709e38f3c752249072794931a5
|
|
| BLAKE2b-256 |
0f399d670945fcc4b9bb6f94b57bc73a2dfa00241cd2d4fa0224d6c838a7c3f1
|