从图像URL构建调色板

Jyo*_*ska 1 python palette python-imaging-library

我正在尝试创建一个API,它将图像URL作为输入,并返回JSON格式的调色板作为输出.

它应该是这样的:http://lokeshdhakar.com/projects/color-thief/

但应该是在Python中.我已经研究过PIL(Python图像库),但没有得到我想要的东西.有人能指出我正确的方向吗?

Input: Image URL
Output: List of Colors as a palette
Run Code Online (Sandbox Code Playgroud)

unu*_*tbu 9

import numpy as np
import Image

def palette(img):
    """
    Return palette in descending order of frequency
    """
    arr = np.asarray(img)
    palette, index = np.unique(asvoid(arr).ravel(), return_inverse=True)
    palette = palette.view(arr.dtype).reshape(-1, arr.shape[-1])
    count = np.bincount(index)
    order = np.argsort(count)
    return palette[order[::-1]]

def asvoid(arr):
    """View the array as dtype np.void (bytes)
    This collapses ND-arrays to 1D-arrays, so you can perform 1D operations on them.
    http://stackoverflow.com/a/16216866/190597 (Jaime)
    http://stackoverflow.com/a/16840350/190597 (Jaime)
    Warning:
    >>> asvoid([-0.]) == asvoid([0.])
    array([False], dtype=bool)
    """
    arr = np.ascontiguousarray(arr)
    return arr.view(np.dtype((np.void, arr.dtype.itemsize * arr.shape[-1])))


img = Image.open(FILENAME, 'r').convert('RGB')
print(palette(img))
Run Code Online (Sandbox Code Playgroud)

palette(img)返回一个numpy数组.每行可以解释为一种颜色:

[[255 255 255]
 [  0   0   0]
 [254 254 254]
 ..., 
 [213 213 167]
 [213 213 169]
 [199 131  43]]
Run Code Online (Sandbox Code Playgroud)

获得前十种颜色:

palette(img)[:10]
Run Code Online (Sandbox Code Playgroud)