Developer technologies | VB
An object-oriented programming language developed by Microsoft that can be used in .NET.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
HI Friends
I have code that returns the text in the image by Tesseract OCR.
Dim api = OcrApi.Create()
Using api
api.Init(Patagames.Ocr.Enums.Languages.English) ' Languages.English)
Dim plainText As String = api.GetTextFromImage(PictureBox1.Image) '(bmp)
Dim lines As String() = plainText.Split(New String() {vbLf}, StringSplitOptions.None)
TextBox1.Text = lines(0)
End Using
But the accuracy of the resulting text is not acceptable at all!
I will attach the my photo. return text is :'EPVWUAG2LOSCBPZAANIZZ10 1'
Please guide me how to get the text more accurately