-
Notifications
You must be signed in to change notification settings - Fork 379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not reading provided ./tessdata/eng.traineddata #9
Comments
Hi there! Please post here the main method or class you where are calling the doOCR() method, thx. |
Sure! // Tess4J
Tesseract instance = Tesseract.getInstance();
instance.setPageSegMode(4);
try {
String content = instance.doOCR(page);
} catch (TesseractException e) {
e.printStackTrace();
} |
The correct use of the TESS4J-API with the default tessdata folder:
Please use the latest release: 1.4.1 |
Thank you, this worked! By the way, this led me to another bug #10 |
We are working hard on the project right now, refactoring and testing are taking time, but soon we will deliver better documentation. |
Thank you, this worked! [4F2E4A2E] |
@4F2E4A2E Thank you, i'ts working now. I hope we could find more easily the doc in the futur ;) (maybe put the Tutorial directly in the readme file for a direct visioning in github ?) |
Is there a distinction between vertical reading and horizontal reading in picture reading? |
Just cloned the repo, built the .jar with
Added the tess4j-2.0.0-SNAPSHOT-all.jar file to my classpath and tried to use it.
On the first call to
it spits this out:
Double checked and yes, I do have the TESSDATA_PREFIX set to:
C:\Users\ribeirob\Applications\nguyenq\tess4j\src\main\resources\
The text was updated successfully, but these errors were encountered: