Skip to content Skip to sidebar Skip to footer

Histogram Equalization Of Matplotlib Color Tables

I'm new to python and matplotlib and I was wondering whether anyone knew if there were any utilities available to do the equavalent of histogram equalization but to a matplotlib co

Solution 1:

Histogram equalization can be applied by modifying the palette (or LUT) of your image, so it would the definition of a palette that is equalized.

I searched a bit and couldn't find source code for computing an equalized palette, so unless something exitss you would have to code it yourself.

You should be started with the description of the algorithm on the Wikipedia article.

You could also ask for help on the matplotlib lists.

Post a Comment for "Histogram Equalization Of Matplotlib Color Tables"