在谷歌视觉文本检测API中使用语言提示?

问题描述 投票:1回答:1

所以我知道google-vision api支持多种语言进行文本检测。通过使用下面的代码,我可以从图像中检测英语。但根据谷歌我可以使用参数语言提示来检测其他语言。那么我想把这个参数放在下面的代码中呢?

def detect_text(path):
    """Detects text in the file."""
    from google.cloud import vision
    imageContext = 'bn'
    client = vision.ImageAnnotatorClient(imageContext)

    with io.open(path, 'rb') as image_file:
        content = image_file.read()

    image = vision.types.Image(content=content)

    response = client.text_detection(image=image)
    texts = response.text_annotations
    print('Texts:')

    for text in texts:
        print('\n"{}"'.format(text.description))

        vertices = (['({},{})'.format(vertex.x, vertex.y)
                    for vertex in text.bounding_poly.vertices])

        print('bounds: {}'.format(','.join(vertices)))


detect_text('Outline-of-the-Bangladesh-license-plates_Q320.jpg')


python-3.x api google-cloud-platform google-vision
1个回答
0
投票

像这样:

response = client.text_detection(
    image=image,
    image_context={"language_hints": ["bn"]},  # Bengali
)

有关详细信息,请参阅"ImageContext"

© www.soinside.com 2019 - 2024. All rights reserved.