Skip to content

Instantly share code, notes, and snippets.

@spolu
Last active August 29, 2015 14:07
Show Gist options
  • Save spolu/75e6ab00d651df1b96b2 to your computer and use it in GitHub Desktop.
Save spolu/75e6ab00d651df1b96b2 to your computer and use it in GitHub Desktop.
Hash Distance
var LIBRARY = ...;
var THRESHOLD = ...;
function compare(image_1, image_2) {
/* h1 and/or h2 can be stored in database. */
var h1 = LIBRARY.hash(image_1);
var h2 = LIBRARY.hash(image_2);
var d = LIBRARY.distance(h1, h2);
return (d < THRESHOLD);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment