I am currently trying to read from a few images the text and it seems that the google api is skipping some 0's.
Here is the code:
Google.Cloud.Vision.V1.Image image = Google.Cloud.Vision.V1.Image.FromFile(imagepath);
ImageAnnotatorClient client = ImageAnnotatorClient.Create();
IReadOnlyList<EntityAnnotation> response = client.DetectText(image);
string test = string.Empty;
foreach (EntityAnnotation annotation in response)
{
if (annotation.Description != null)
{
Console.WriteLine(annotation.Description);
test += Environment.NewLine + annotation.Description;
}
}
Here is the image(s) it is attempting:Attempt 1Attempt 2Attempt 3
Are there settings I need to change to make it accept 0's?
Also here is the output from
Attempt 1: https://pastebin.com/dNxRt7QK
results above
Attempt 2: https://pastebin.com/XVZzmtTg
results above
Attempt 3: https://pastebin.com/2kQMiC8h
results above
It's really good at reading everything but it really hates reading 0's. The Deaths specifically in Attempt 2/3.
Edit: Adding in a few results showing this from the google drag-n-drop testing: Attempt 1 Attempt 2