I found the histogram of an RGB image using concrete values in the range [0x000000; 0xffffff], rather than in the range [0,255] for the three separate channels or using bins for one channel (because I need to have a big range). And now I need some image processing algorithms that uses the type of histogram I built.
To be more precise, I computed 2 histograms in two ways, and there is some difference between numbers. Now I need to see the difference in the results of algorithms by giving them these two datasets.
I found "histogram equalization" algorithm, however, as I understand, it's not applicable in my case. So, is there any such algorithms?