I'm not sure how I would go about reducing the color palette of a PIL Image. I would like to reduce an image's palette to the 5 prominent colors found in that image. My overall goal is to do some basic color sampling.
|
feedback
|
|
That's easy, just use the undocumented colors argument:
I'm using Image.ADAPTIVE to avoid dithering | |||
|
feedback
|
|
The short answer is to use the | |||
|
feedback
|
|
I assume you want to do something more sophisticated than posterize. "Sampling" as you say, will take some finesse, as the 5 most common colors in the image are likely to be similar to one another. Maybe take a look at the 5 most separated peaks in a histogram. | |||
|
feedback
|
|
I don't use PIL, but it seems pretty straightforward. Once you have an image you can do something along the lines of (pseudocode-ish):
Of course, if you want to get colors that are just "close", you might want to "transform" each pixel first through a filter to group "near" colors with each other. | |||
|
feedback
|