Contrast Limited AHE (CLAHE)
See original GitHub issueTFA already includes a global histogram equalization function (tfa.image.equalize
). I’m proposing adding a python implementation of CLAHE along side that.
Relevant information
- Are you willing to contribute it (yes/no): Yes
- Are you willing to maintain it going forward? (yes/no): Yes
- Is there a relevant academic paper? (if so, where): Yes
- Is there already an implementation in another framework? (if so, where): Yes
- Was it part of tf.contrib? (if so, where): No
Which API type would this fall under (layer, metric, optimizer, etc.) image
Who will benefit with this feature? This specific feature was requested a few years ago in tensorflow main (https://github.com/tensorflow/tensorflow/issues/24181), but it looks like no one has taken it on yet. It’s especially useful for enhancing features on some medical imaging data.
Any other info. Originally asked for guidance on the tensorflow developers mailing list and was directed to open a PR here. I have a draft already and it looks like it will fit into tensorflow addons pretty well.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
CLAHE and Thresholding in Python - Towards Data Science
Contrast Limited AHE (CLAHE) is a variant of adaptive histogram equalization in which the contrast amplification is limited, so as to reduce ...
Read more >Contrast Limited Adaptive Histogram Equalization - MathWorks
The CLAHE algorithm has three major parts: tile generation, histogram equalization, and bilinear interpolation. The input image is first divided into sections.
Read more >Contrast Limited Adaptive Histogram Equalization (CLAHE ...
The present research work proposes the implementation of Contrast Limited Adaptive. Histogram Equalization (CLAHE) image processing algorithm for enhancing the.
Read more >Machine learning hyperparameter selection for Contrast ...
The Contrast Limited Adaptive Histogram Equalization (CLAHE) is a method which can overcome the limitations of global approaches by ...
Read more >Contrast limited adaptive histogram equalization based ...
Abstract: Contrast limited adaptive histogram equalization (CLAHE) is used for improve the visibility level of foggy image or video.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Awesome! I’m going to spend a few days cleaning up my draft. I’ll plan on opening a PR sometime next week.
Ok we put this in the ecosystem review pipeline