Picture auto enhancement
See original GitHub issueI’m sorry if this question seems silly but I didn’t see anywhere an “auto” mode other than for the rotation function.
What are you trying to achieve?
We have a lot of documents arriving in our system that are scanned and often not easily readable, we are looking to auto enhances (if necessary) the picture, the contrast, and the luminosity (like the filter of windows).
By “if necessary” I mean: that we don’t want to apply a luminosity + 10
on an image already too bright or a - 10
on one already too dark.
Have you searched for similar questions? Yes, but I didn’t found.
Are you able to provide a minimal, standalone code sample that demonstrates this question? An example:
-
Input:
-
Output:
Are you able to provide a sample image that helps explain the question? (Yes see the two above)
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (4 by maintainers)
Perhaps try using CLAHE with a smaller local region.
https://en.wikipedia.org/wiki/Adaptive_histogram_equalization
For example using the following code with the above input:
produces:
Let’s track this at #200, which is about improving
normalise
and should help with this kind of scenario.