Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
What language are you using? Maybe some library already does the trick. – Francis P Oct 9 '12 at 20:14
An 8-bit color could be done a couple of different ways. It could be an index into a color table, or a RRRGGGBB value, etc. What kind of 8-bit colors were you looking to use? – cHao Oct 9 '12 at 20:20
8 bits isn't nearly enough to represent an arbitrary color. – Mark Ransom Oct 9 '12 at 20:31
I'm thinking of a method that is used in GIF images. GIF images have only 8 bit colors and you can get a pretty good image if you use web safe colors. – bodacydo Oct 9 '12 at 20:34
@MarkRansom take a look at how GIF 8 bit web-safe palette looks: htmlgoodies.com/imagesvr_ce/7234/Figure_06.gif I'd say you get a good approximation. – bodacydo Oct 9 '12 at 20:35
show 4 more comments

3 Answers

What you need to do is convert the RGB to an HSB (hue saturation brightness) value. HSB is 3 bytes, just like RGB, the difference is that HSB values can be compared much more easily than RGB.

Your next step is decide on an "importance" weighting. For example, if all you care about is "color/hue", not saturation or brightness, then you can throw away the S and B bytes and just use the color byte.

If it were me and I were constrained to 8 bits I would use 4 bits of color information (16 different colors), 3 bits of saturation (8 different values), and 1 bit of brightness information (light or dark).

This article describes how to do HSB in Java:

http://java.sys-con.com/node/43559

The source code for this article has an RGB to HSB converter in Java.

share|improve this answer
I'd go with 2 bits of saturation and 2 bits of brightness myself. – Mark Ransom Oct 9 '12 at 21:49

To convert to the web-safe palette, you need to convert the range of each of the r,g,b components from 0-255 to 0-5 and combine them:

color = (r*6/256)*36 + (g*6/256)*6 + (b*6/256)
share|improve this answer

Are you familiar with Floyd–Steinberg dithering? This is used to convert higher order colors to lower order colors, e.g. 24 bit RGB to 3 bit (8 colors) RGB or restricting an RGB image to 8 bits (256 colors) for a GIF conversion.

This algorithm is described on the linked wikipedia page.

share|improve this answer
The idea is to convert a single color. Dithering doesn't make sense in this application. – Mark Ransom Oct 9 '12 at 21:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.