Created
July 27, 2012 13:17
-
-
Save bcho/3187869 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding: utf-8 | |
from color import _color_quantization | |
from color import _save_image, _get_hex_palette | |
from color import image | |
cq = _color_quantization(image, 8) | |
_save_image(cq, 'cq.png') | |
cq_palette = _get_hex_palette(cq, 8) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment