Hi,
Hi Nayan,
Thank you for your inquiry.
Please note that the image you have shared is a scanned OMR sheet. Performing OCR operation on an OMR sheet will definitely slow down the process. In order to read data from OMR sheet you need to use OMR Template Editor and OmrEngine class. For more information, please visit the following links:
Hope the above information helps. Feel free to contact us in case you have further comments or queries.
Hi,
Hi Nayan,
Please note that OMR Template Editor solution is for read/extract data from OMR sheet (Problematic Image.jpg). In order to read data from an image that is not an OMR sheet, you have to perform OCR operation on it. Further, we are working on the issue that you were facing while reading the image VodafoneBillImage1.jpg under ticket ID OCR-34235 of our issue tracking system. We will update you soon via this thread.
Hi Ikram,
ocr_engine.ClearNotifies();
ocr_engine.Config.ClearRecognitionBlocks();
ocr_engine.Config.AddRecognitionBlock(RecognitionBlock.CreateTextBlock(125, 569, 370, 34));
ocr_engine.Config.AddRecognitionBlock(RecognitionBlock.CreateTextBlock(129, 479, 290, 34));
ocr_engine.Config.AdjustRotation = AdjustRotationMode.Disabled;
ocr_engine.Config.DetectTextRegions = false;
ocr_engine.Image = ImageStream.FromFile(file_path);
if (ocr_engine.Process())
{
Aspose.OCR.IRecognizedText text = ocr_engine.Text;
string temp = text.ToString();
Console.WriteLine(temp);
}
The issues you have found earlier (filed as ) have been fixed in this Aspose.Words for JasperReports 18.3 update.