About read text and convert

Efe Doğanlar 1 Reputation point
2021-01-22T22:25:23.493+00:00

Image: https://prnt.sc/xgxghe

I'm trying to detect the image with this name "João Victor". OCR tool showing me on console like in English "Joao Victor" but in process looking for "João Victor". And thats why i cant catch/detect this name correctly. Because i'm looking for "Joao Victor" not for "João Victor"

If i code to find the name like "João Victor" then OCR tool can send TRUE result.
If i code to find the name like "Joao Victor" then OCR tool cant send me TRUE result.

In console there is no different, showing as "Joao Victor".

How can i handle that ?

Azure Computer Vision
Azure Computer Vision
An Azure artificial intelligence service that analyzes content in images and video.
339 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. romungi-MSFT 43,676 Reputation points Microsoft Employee
    2021-01-25T08:16:03.377+00:00

    @Efe Doğanlar The Read API(Analyze operation) supports response in various language text so you should expect the response from the service to contain text as is in the image.

    I believe you are also referring to the try it out page for the console operation you mentioned where a simple tool is available to test the API. In this case this tool uses a basic scenario to display text in a normalized way as it does not take additional parameters other than the image and operation name. The actual result of an operation is the direct response of the API as mentioned in the references for API. I have tested this scenario with the language parameter and the response both in case of English or Spanish displays the result as "João Victor" which is correct in this scenario and you should handle the response on your client app to convert it to a regular character if required.

    0 comments No comments