Skip to content

Instantly share code, notes, and snippets.

@fernandoseguim
Created June 23, 2019 17:41
Show Gist options
  • Save fernandoseguim/e8d45d9aeff8c8d9a8513e9d0e211fe6 to your computer and use it in GitHub Desktop.
Save fernandoseguim/e8d45d9aeff8c8d9a8513e9d0e211fe6 to your computer and use it in GitHub Desktop.
foreach(var faceDetail in response.FaceDetails)
{
foreach(var emotion in faceDetail.Emotions)
{
if(emotion.Confidence > confidence) { Console.WriteLine($"this person may feel {emotion.Type}"); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment