我想识别下图中的数字
我目前在 Eclipse Java 项目中使用 Tess4J 库,但它只能识别平面颜色背景中的字符。对于这张图片,它甚至无法识别这张图片上有字符(数字)。帮助我找到完成这项任务的方法。
这是我当前的代码:
import net.sourceforge.tess4j.*;
import java.io.File;
public class Main {
public static void main(String[] args) {
File imageFile = new File("image.png");
Tesseract instance = Tesseract.getInstance();
try {
String result = instance.doOCR(imageFile);
System.out.println(result);
} catch (TesseractException e) {
System.err.println(e.getMessage());
}
}
}
如果有办法计算由黄线分隔的方块。
Thank you