We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Shreeshrii
It doesn't work in JAVA. please check. It says there is no file name. Any reason?
import net.sourceforge.tess4j.*; import java.awt.image.BufferedImage; Tesseract ocr; BufferedImage img; PImage pimg; String res, show; int idx; void setup() { ocr = new Tesseract(); ocr.setDatapath(dataPath("")); ocr.setLanguage("ssd"); pimg = loadImage("a4.jpg"); img = (BufferedImage) pimg.getNative(); show = ""; idx = 0; try { res = ocr.doOCR(img); // println(res); } catch (TesseractException e) { println(e.getMessage()); } frameRate(25); }
error message
Failed loading language 'ssd' Tesseract couldn't load any languages!
The text was updated successfully, but these errors were encountered:
The version I’m using: tess4j-3.4.8.jar
Sorry, something went wrong.
Works on tess4j-4.0.0.
thank you
No branches or pull requests
Shreeshrii
It doesn't work in JAVA.
please check. It says there is no file name. Any reason?
error message
The text was updated successfully, but these errors were encountered: