Skip to content

Instantly share code, notes, and snippets.

@perfectmak
Last active January 26, 2018 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perfectmak/fe55eba721ca079ffaa8315a21ef726a to your computer and use it in GitHub Desktop.
Save perfectmak/fe55eba721ca079ffaa8315a21ef726a to your computer and use it in GitHub Desktop.
function getRandomKCenters(k, colors) {
return lodash.sampleSize(colors, k);
}
function quantize(k, colors) {
...
const centers = getRandomKCenters(k, colors)
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment