OCR not recognising text against a black background in Tess4j

92 Views Asked by At

I am not able to extract text against a black background as shown in the attached image. Everything else is getting recognised.

Can somebody please help?

enter image description here

public static void main(String args[]) {
        scrShotDirPath = new File("/Users/prakashp/IdeaProjects/screenshots");
        String imgName = "15-Nov-2018_05_14_57PM.png";
        String result = null;
        File imageFile = new File(scrShotDirPath, imgName);


        logger.info("Image name is :" + imageFile.toString());
        ITesseract instance = new Tesseract();
        File tessDataFolder = LoadLibs.extractTessResources("tessdata");
        instance.setDatapath(tessDataFolder.getAbsolutePath());
        try {
            result = instance.doOCR(imageFile);
            logger.info(result);
        } catch (TesseractException e) {
            logger.info("", e);
        }
}

<dependency>
    <groupId>net.sourceforge.tess4j</groupId>
    <artifactId>tess4j</artifactId>
    <version>4.2.2</version>
</dependency>
0

There are 0 best solutions below