https://github.com/anntzer/clahe
(Exact) contrast-limited adaptive histogram equalization
https://github.com/anntzer/clahe
Last synced: about 1 year ago
JSON representation
(Exact) contrast-limited adaptive histogram equalization
- Host: GitHub
- URL: https://github.com/anntzer/clahe
- Owner: anntzer
- License: zlib
- Created: 2016-08-26T20:17:00.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T18:29:31.000Z (over 1 year ago)
- Last Synced: 2025-03-30T12:07:15.319Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 59
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
Exact contrast-limited adaptive histogram equalization
======================================================
|PyPI|
.. |PyPI|
image:: https://img.shields.io/pypi/v/clahe.svg
:target: https://pypi.python.org/pypi/clahe
As usual, install using pip:
.. code-block:: sh
$ pip install clahe # from PyPI
$ pip install git+https://github.com/anntzer/clahe # from Github
Run tests with unittest (or pytest).
This package uses a simple moving window implementation. It may be worth
trying an implementation based on Perreault, S. & Hebert, P., *Median Filtering
in Constant Time* (2007).
See also the `discussion on the scikit-image issue tracker`__.
.. __: https://github.com/scikit-image/scikit-image/issues/2219#issuecomment-516791949