Extracts 10 dominating colors from the image and add the palette to the bottom of the image (inspired by colorpalette.cinema). You can adjust the palette height, outline color and width to match your image dimension.
The color.py
script does all the work. It uses Pillow. It takes the image and reduce the number of colors in it to 10, but the way it does this is interesting as only dominating colors are choosen as they can best resemble the original image.
image with 10 colors
original image
To know more about the method you can read this post
Install:
git clone https://github.com/makkoncept/colorpalette.git
cd colorpalette
Create a virtualenv:
python3 -m venv venv
Activate it on Linux:
. venv/bin/activate
Or on Windows cmd:
venv\Scripts\activate.bat
Install requirements:
pip install -r requirements.txt
Run:
python run.py
View on localhost:5000
Stackoverflow and script