Created
May 11, 2015 22:50
-
-
Save jz5/44f6ba69c660693b1a00 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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