haishokuis a JP word, it means palette in English.
Haishoku is a development tool for grabbing the dominant color or representative color palette from an image, it depends on Python3 and Pillow.
-
Grab the
dominant colorfrom a image. -
Grab the representative
color palettefrom a image. -
From
v1.1.4, Haishoku could load a image from remote url.
( original image's source: dribbble )
pip3 install haishokuor maybe you should use
python3 -m pip install haishokufrom haishoku.haishoku import Haishoku
haishoku = Haishoku.loadHaishoku(image)it will return a Haishoku instance, and you can use haishoku.dominant and haishoku.palette to get the image's dominant color and color palette
Also, you can use more immediately api to get them or show them temporarily, just like below:
from haishoku.haishoku import Haishoku
dominant = Haishoku.getDominant(image)returns: (R, G, B) tuple
from haishoku.haishoku import Haishoku
Haishoku.showDominant( image )it will open a temporary image to show the dominant color.
from haishoku.haishoku import Haishoku
palette = Haishoku.getPalette( image )returns: [(percentage, (R, G, B)), (percentage, (R, G, B)), ...] Array length <= 8
from haishoku.haishoku import Haishoku
Haishoku.showPalette( image )it will open a temporary image to show the palette.