我刚刚从http://tess4j.sourceforge.net/下载了Tess4J并将其导入netbeans。代码正在运行,但是当我输入图像的URL并尝试转换它时,我收到错误。
我的代码:
public static void main(String[] args) {
File imageFile = new File("http://www.example.com/example-image.png");
Tesseract instance = Tesseract.getInstance(); //
try {
String result = instance.doOCR(imageFile);
System.out.println(result);
} catch (TesseractException e) {
System.err.println(e.getMessage());
}
}
输出错误:
02:51:36.251 [main] ERROR net.sourceforge.tess4j.Tesseract - No input source set!
java.lang.IllegalStateException: No input source set!
java.lang.IllegalStateException: No input source set!
at com.sun.imageio.plugins.png.PNGImageReader.getNumImages(PNGImageReader.java:1347)
at net.sourceforge.tess4j.util.ImageIOHelper.getIIOImageList(ImageIOHelper.java:337)
at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:212)
at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:196)
at Testing.main(Testing.java:23)
之前有其他人经历过这样的事情吗?我在stackoverflow上找到了3个类似的主题,但它们对我没有帮助..
答案 0 :(得分:4)
您的输入文件位置无效,请尝试使用有效的文件位置或尝试使用本地文件位置进行测试。