Google Cloud Vision API返回类型= TEXT_DETECTION

时间:2016-07-09 10:20:20

标签: android google-cloud-platform google-cloud-vision

我正在使用Google Cloud Vision API处理OCR Android应用程序

为了测试,我使用了Google提供的示例应用程序

https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/android/CloudVision

我已经测试过类型" LABEL_DETECTION"它工作正常

我已将此示例应用程序更新为适用于类型" TEXT_DETECTION"而不是" LABEL_DETECTION"

我已经使用此图片对其进行了测试,然后返回"没有"结果

[ocr_image]

enter image description here

感谢是否有人知道问题是什么

提前致谢

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题。在我的情况下,它发生了,因为我忘了更改convertResponsetoString方法。

尝试改变这个:

列出标签= response.getResponses()。get(0)。 getLabelAnnotations ();

到此:

列出标签= response.getResponses()。get(0)。 getTextAnnotations ();