Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anntzer/clahe
(Exact) contrast-limited adaptive histogram equalization
https://github.com/anntzer/clahe
Last synced: about 1 hour 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 (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T18:29:31.000Z (about 2 months ago)
- Last Synced: 2024-12-15T04:50:45.554Z (10 days ago)
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 55
- Watchers: 3
- 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/claheAs usual, install using pip:
.. code-block:: sh
$ pip install clahe # from PyPI
$ pip install git+https://github.com/anntzer/clahe # from GithubRun 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