Skip to content

awei0916/colorpalette

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


ColorPalette

A simple web app to extract dominant colors from an image.

MIT License prs welcome

Live

View it live at: https://colorpalettedemo.herokuapp.com/

What it do

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.

How it works

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

Screenshot

original image

To know more about the method you can read this post

Install & run locally

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

Attribution

Icon made by Freepik from www.flaticon.com

About

Flask app : extracts palette of dominating colors from image. https://colorpalettedemo.herokuapp.com/

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 54.9%
  • Python 45.1%