I'm trying to recognize vertical text using google cloud vision. Image example:
I use Try This API on https://cloud.google.com/vision/docs/ocr to test the engine.
Request body:
{
"requests": [
{
"features": [
{
"type": "DOCUMENT_TEXT_DETECTION"
}
],
"image": {
"source": {
"imageUri": "https://i.stack.imgur.com/3wwYp.jpg"
}
}
}
]
}
The result is
{
"responses": [
{}
]
}
Am I missing something? Thank you.