Google视觉api文字检测

Google vision api text detection

我正在使用 google 视觉 api 从图像中识别文本。日语中的图像。

但是回复不是日语而是英语。谁能告诉我怎么把英文改成日文。

在AnnotateImageRequest 中添加语言提示。例如,在 C# 中:

       var responses = vision.Images.Annotate(
            new BatchAnnotateImagesRequest()
            {
                Requests = new[] {
                new AnnotateImageRequest() {
                    Features = new [] { new Feature() { Type =
                      "TEXT_DETECTION"}},
                    Image = new Image() { Content = imageContent },
                    ImageContext = new ImageContext()
                    {
                        LanguageHints = new string[] { "ja" }
                    }
                }
           }
            }).Execute();

尝试输入 "DOCUMENT_TEXT_DETECTION" 而不是 "TEXT_DETECTION", 例如(在Java),

Feature feat = Feature.newBuilder().setType(Type.DOCUMENT_TEXT_DETECTION).build();