1

我使用了谷歌云视觉 api。

我只想识别图像的某些部分

并通过坐标输入进行ocr分析..(如果我在图像中找到坐标)

不在谷歌示例中。

可能吗?

4

1 回答 1

0

是的,这是可能的,我在这里留下一部分代码,您可以尝试,主要是找到您尝试使用的字段的顶点“x”和“y”。

try (ImageAnnotatorClient client = ImageAnnotatorClient.create()) {
        BatchAnnotateImagesResponse response = client.batchAnnotateImages(requests);
        List<AnnotateImageResponse> responses = response.getResponsesList();

        for (AnnotateImageResponse res : responses) {
            if (res.hasError()) {
                System.out.format("Error: %s%n", res.getError().getMessage());
                return;
            }

            for (int i = 0; i < res.getTextAnnotationsCount(); i++) {
                EntityAnnotation annotation = res.getTextAnnotations(i);
                if (i > 0) {
                    descriptionText = annotation.getDescription().replaceAll("\\s+", "").trim();
                    System.out.println("Text--> " + descriptionText);

                    for (int x = 0; x < annotation.getBoundingPoly().getVerticesCount(); x++) {
                        xvertice = annotation.getBoundingPoly().getVertices(x).getX();
                        yvertice = annotation.getBoundingPoly().getVertices(x).getY();

                        System.out.println("X--> " + xvertice);
                        System.out.println("Y--> " + yvertice);
                        System.out.println("<---------------->");
                    }

                    /*
                     * for (int xx = 0; xx <
                     * annotation.getBoundingPoly().getNormalizedVerticesCount(); xx++) { xp =
                     * annotation.getBoundingPoly().getNormalizedVertices(xx).getX(); yy =
                     * annotation.getBoundingPoly().getNormalizedVertices(xx).getY();
                     * 
                     * System.out.println("X--> " + xp); System.out.println("Y--> " + yy);
                     * System.out.println("<---------------->"); }
                     */

                }
            }
        }
于 2020-09-30T16:26:05.013 回答