How to compute similarity between two colors in RGBA color space? (where background color is unknown of course)
I need to remap RGBA image to a palette of RGBA colors by finding best palette entry for each pixel in the image*.
In RGB color space most similar color can be assumed to be the one with smallest euclidean distance.
However, this approach doesn't work in RGBA, e.g., Euclidean distance from rgba(0,0,0,0) to rgba(0,0,0,50%) is smaller than to rgba(100%,100%,100%,1%), but the latter looks better.
So far I've got best result in premultiplied RGBA color space:
r = r×a
g = g×a
b = b×a
using this formula:
Δr² + Δg² + Δb² + 3 × Δa²
but that's just my hunch and I can't prove that it's optimal and empirically it doesn't look optimal — there are sharp edges in semitransparent areas. Linear proportions between opaque colors and alpha seem fishy.
What's the optimal formula?
For comparison I've tried picking many different background colors, blending each RGBA color with each background, comparing blended colors in the RGB space, and picking maximum distance. Visually that gives good results, but unfortunately it's computationally too wasteful for my application.
*) for simplicity, I'm ignoring error diffusion, gamma and psychovisual color spaces in this question.
Eventually I've answered my own question
Slightly related: if you want to find nearest color in this non-Euclidean RGBA space, vp-trees are the thing.
ais opacity of color I'm looking for (perhaps should bemin(a₁,a₂)?). The exact distance doesn't have to be true for any particular color, just an approximation of similarity given constraint of unknown background (could be average distance between colors computed for all possible backgrounds?) – porneL Jan 21 '11 at 12:53