For a small project, I need to compare one image with another. The images are smallish, varying from 25 to 100px across. I've decided to represent each image using histograms (either a 3D histogram or as three 1D histograms) and I'll need to compare the two to see how similiar they are. It's safe for me to just use color and to ignore texture and edge histograms.
Most "histogram difference" algos just sum the differences between each bin, however this doesn't work if one histogram H1 has more pixels in bin red[0] than histogram H2 has in red[1] as opposed to red[10] because they're both of a similar color.
Is there a simpler way to determine the difference between two histograms that takes into acccount the shape of the distribution rather like this?