I need to segment the image by 7 colors (red, orange, yellow, green, light-blue, blue, violet) as in the rainbow. Do you know how to do it? Any papers or algorithms may be. For example it can be done by assigning each triple (r, g, b) a color. But it is not effective as we got there 255^3 of combinations.
feedback
|
|
The "H" component of the HSV colourspace http://en.wikipedia.org/wiki/HSL_and_HSV, will give you a reasonable number representing the position on a (continuous) rainbow. Then it is easy enough to divide that continuous space into seven segments of your choice. | |||||||||||||||
feedback
|
|
Since you already have the 7 colors you need, you don't need to use clustering. A sensible starting point would be: For each pixel in the image find which of the 7 colors lies closest to it (using L2 distance on RGB) and assign that closest color to that pixel. You might be able to get better (more perceptually similar) results by converting first to some other color space, like CIE XYZ, however this will require experimentation. | |||||||||||
feedback
|
|
If the colors are predefined then the solution is just to loop over every pixel and substitute with the closest representative. As carlosdc said may be some color space transformation can give better result than just To make things faster a possible trick is to trade in some memory and caching the result of a given RGB triplet... i.e.
If the numbers of colors is small you can use less memory. For example limiting the number of representatives to 15 you need just 4 bits per color entry (half the space) and something like the following would do it
If on the opposite you know that the number of possible input colors will be small and the number of representatives will be big then a standard | |||
|
feedback
|
|
Why don't you use one of clustering methods (algorithms)? For example, k-means algorithm. Otherwise, google "image segmentation by colors." | |||
|
feedback
|
|
If you want it to look good you'll want to use dithering, e.g. Floyd Steinberg dithering: http://en.wikipedia.org/wiki/Floyd%E2%80%93Steinberg_dithering | |||
|
feedback
|