Google云视觉 - 从OCR请求中获取JSON错误响应

时间:2017-07-03 15:40:43

标签: json xamarin.android ocr google-cloud-vision

我是使用谷歌云API的新手,所以如果我问任何愚蠢的问题,请原谅我。我想尝试用Xamarin c#开发Android应用程序来为泰语做OCR,所以我的想法是,我希望从我的照片中获得OCR结果。 这是我的json请求

{"requests": [
{"image":{"content":"3QGzdykwB2MZPcpx...."},
"imageContext": {"languageHints":["th"]},
"features": [{"type":"DOCUMENT_TEXT_DETECTION"}]}]}

但我得到的结果是

"error": {
"code": 14,
"message": "Service temporarily unavailable. Error processing features."}

这有什么问题?任何人请提出一些建议。谢谢。

1 个答案:

答案 0 :(得分:0)

由于您尚未提供源代码,我假设您使用的是GoogleCloudPlatform/java-docs-samples

上述异常的主要原因是下面代码中的面注释为null。您可以根据需要更新以下代码

if (response.getFaceAnnotations() == null) {
  throw new IOException(
      response.getError() != null
          ? response.getError().getMessage()
          : "Unknown error getting image annotations");
}
相关问题