Skip to content

Instantly share code, notes, and snippets.

@mastdiekin
Forked from duhaime/cat.jpg
Created March 18, 2021 13:08
Show Gist options
  • Save mastdiekin/c0341b3c94fb2dc57549356763742162 to your computer and use it in GitHub Desktop.
Save mastdiekin/c0341b3c94fb2dc57549356763742162 to your computer and use it in GitHub Desktop.
Color thief top colors
from colorthief import ColorThief
import matplotlib.pyplot as plt
import numpy as np
color_thief = ColorThief('cat.jpg')
palette = color_thief.get_palette(color_count=8)
arr = np.array(palette).astype(float) / 255
plt.imshow([arr])
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment