0

我正在尝试使用下面的 github 示例代码链接来实现和添加谷歌视觉服务到我的项目中。 https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/vision/text/ 在 ImageText 和 Word java 类中遇到此错误

public static Builder builder() {
return new AutoValue_ImageText.Builder();
  }

其中 AutoValue_ImageText 类型无法解析并且

 public static Builder builder() {
return new AutoValue_Word.Builder();
  }

其中 AutoValue_Word 类型无法解析。请帮忙!我什至无法修复这些语法错误,看看这段代码是否正确。先感谢您

4

1 回答 1

0

在我看来,那里缺少 gradle 文件。确保您在 app/build.gradle 中有该行

dependencies {
    ...
    compile 'com.google.android.gms:play-services-vision:9.0.0+'
}

对我来说,这个小演练对我帮助很大:Mobile Vision Text

于 2016-09-07T12:57:43.500 回答