I tried extracting text from an image but the accuracy of result is not good. Is there a way to extract text from images accurately?
AsposeOCR asposeOCR = new AsposeOCR();
ArrayList rectArray = new ArrayList();
rectArray.add(new Rectangle(50, 50, 350, 350));
String text = asposeOCR.RecognizePage(“excel-invoice-template.png”, rectArray);
System.out.println("Text using AsposeOCR " + text);
Input file : excel-invoice-template.png (16.5 KB)
Obtained result : ObtainedResult.zip (208 Bytes)