I've an application that indexes the top 16 colors that appear in videos.
I'm trying to write another application that allows the user to select a color and then the application finds all videos that this color appears in.
The problem is that as I only index 16 colors per video, the users choose an RGB color. The probability that this color is indexed is very low, so almost always my application returns no results.
I thought of a way I could make this work - I could index the colors that appear in the video and convert them to closest 8-bit color.
Then when a user selects an RGB color, I could convert the user choice to the same 8-bit closest color.
This way I'd always have matches.
The only major problem I've right now is how to convert an RGB color to the closest 8 bit color?