How to equalize the histogram of one image wrt another image?
I have two images, one source and one target. I want to get the histograms of both source and target. Finally match the histogram of target wrt source. The opnenCv method 'equalizeHist' does it for one single image. Is there a way to do it with two images??
hmm do you want to match histograms, as in - similarity measure ?
then equalizeHist is the wrong function.
(calcHist/compareHist)
yeah "match" is a better word to describe it. I have calculated the cumulative histogram of both the images, now how to match them?? After matching, the target image must have the color properties of the source image....