Skip to content

Instantly share code, notes, and snippets.

@jz5
Created May 11, 2015 22:50
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 jz5/44f6ba69c660693b1a00 to your computer and use it in GitHub Desktop.
Save jz5/44f6ba69c660693b1a00 to your computer and use it in GitHub Desktop.
Dim client = New VisionServiceClient("**key**")
Dim result = Await client.AnalyzeImageAsync("画像 URL") ' 画像の Stream も指定可能
If result.Categories IsNot Nothing AndAlso result.Categories.Any AndAlso
result.Categories.First.Name.StartsWith("food_") Then
' (画像のカテゴリーが食べ物の場合)
End If
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment