Re: [tesseract-ocr] Can't get bib#'s from tshirt JPG: should be simple.

2022-11-30 Thread Tim Nettleton
I do not understand: is tesseract not capable of doing this? Is there no input or guidance that anyone can yield to get closer to a solution with tesseract? Tim On Wednesday, November 30, 2022 at 1:17:48 AM UTC-5 zdenop wrote: > Tesseract is an OCR engine. You need to search for " text detectio

Re: [tesseract-ocr] Can't get bib#'s from tshirt JPG: should be simple.

2022-11-30 Thread Giuseppe Coniglio
Hi Tim, below the code Tesseract tesseract = new Tesseract(); try { tesseract.setDatapath("tessdata"); // the path of your tess data folder inside the extracted file String text = tesseract.doOCR(new File("c:\\temp\\TSP_12484529.JPG")); // path of your image file System.out.print(text); } catch (T