Hi Team,
I’m testing Aspose OCR with the code below. The input picture’s quality is good, but the result is very bad.
Can you help me to solve my issue ?
Dim LicPOCR As New Aspose.OCR.License
LicPOCR.SetLicense("C:\temp\apose.lic")
Dim engine As New Aspose.OCR.OcrEngine
engine.LanguageContainer.Clear()
engine.LanguageContainer.AddLanguage(Aspose.OCR.LanguageFactory.Load("C:\temp\french.zip"))
engine.Image = Aspose.OCR.ImageStream.FromFile("C:\temp\capture.jpg")
engine.Process()
Console.WriteLine(engine.Text)
Where can I send the capture.jpg and french.zip ?
Thanks