Created
May 19, 2019 07:00
-
-
Save kcchien/130f6a8574d0fb0712f007e6fa0b03f5 to your computer and use it in GitHub Desktop.
Detect Labels, Faces, and Landmarks in Images with the Cloud Vision API - 4
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名稱]/selfie.png" | |
} | |
}, | |
"features": [ | |
{ | |
"type": "FACE_DETECTION" | |
}, | |
{ | |
"type": "LANDMARK_DETECTION" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment