Last active
May 19, 2019 03:48
-
-
Save kcchien/4fdffea2d54c847f477c88fe9e6e3bea to your computer and use it in GitHub Desktop.
Detect Labels, Faces, and Landmarks in Images with the Cloud Vision API - 1
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
{ | |
"requests": [ | |
{ | |
"image": { | |
"source": { | |
"gcsImageUri": "gs://[你的bucket名稱]/donuts.png" | |
} | |
}, | |
"features": [ | |
{ | |
"type": "LABEL_DETECTION", | |
"maxResults": 10 | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment