Skip to content

Instantly share code, notes, and snippets.

@johnathanDOS
Created January 21, 2019 23:38
Show Gist options
  • Save johnathanDOS/5b81ce1c7a30b458514805919482f92d to your computer and use it in GitHub Desktop.
Save johnathanDOS/5b81ce1c7a30b458514805919482f92d to your computer and use it in GitHub Desktop.
faceRecCallback.js
function _FaceRec(data) {
// Check if the FaceRec event was triggered by a stranger
if (data.PropertyTestResults[0].PropertyValue == "unknown person"){
// Misty doesn't recognize this person. Sound the alarm!
}
else {
// Misty knows this person. Do something else.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment