Где использовать языковые подсказки в Google-vision text-detection api?

#python-3.x #api #google-cloud-platform #google-vision

#python-3.x #API #google-облачная платформа #google-vision

Вопрос:

Итак, я знаю, что Google-vision api поддерживает несколько языков для обнаружения текста. И, используя приведенный ниже код, я могу определить английский язык по изображению. Но, согласно Google, я могу использовать параметр language hints для обнаружения других языков. Итак, где именно я предполагаю поместить этот параметр в приведенный ниже код?

 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')


  

Ответ №1:

Вот так:

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

Смотрите «ImageContext» для получения более подробной информации.