Hi team,
I'am using Aspose OCR to extract content from image file using the code :
Aspose.OCR.License lic = new Aspose.OCR.License();
lic.SetLicense("Aspose.Total.lic");
Aspose.OCR.OcrEngine ocr = new Aspose.OCR.OcrEngine();
ocr.LanguageContainer.AddLanguage(Aspose.OCR.LanguageFactory.Load("French_language_resource_file_for_Aspose.OCR_for_.NET_3.2.0.zip"));
extension = System.IO.Path.GetExtension(filePath);
ocr.Image = Aspose.OCR.ImageStream.FromFile(filePath);
ocr.ProcessAllPages = true;
ocr.Process();
The component can't extract the text correctly. However, the image have a good quality (see files attachments)
I'have try to add a lot a filters, switch booleen value but final result not change : area/text content aren't correct.
Can you help me ?
Regards,
NicolasC