Hi Team, I used the tesseract to extract the text from image(attached file) in java but i did not get the expected output.
Please check the image file attached and let me know if we have better solutions to extract the text. Thanks, Mahock Abraham -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to tesseract-ocr+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/43674788-7cad-4f1f-abd4-c52602c3908bn%40googlegroups.com.
public static void main(String args[]) throws TesseractException { Tesseract instance = new Tesseract(); File f = new File(imageFilePath); String result = instance.doOCR(f); System.out.println(result); }