Skip to content

Instantly share code, notes, and snippets.

@engleangs
Created May 26, 2020 09:06
Show Gist options
  • Save engleangs/f170c1d4272fe6856f8f01d3975d47ae to your computer and use it in GitHub Desktop.
Save engleangs/f170c1d4272fe6856f8f01d3975d47ae to your computer and use it in GitHub Desktop.
BufferedImage image = ImageIO.read( new File("sample/captcha-sample-1.png"));
BufferedImage clean = cleanImage(image);
ImageIO.write(clean, "png",new File("sample/clean.png"));
Tesseract tesseract = new Tesseract();
tesseract.setDatapath("D:\\ProgramFiles\\Tesseract-OCR\\tessdata");
String result = tesseract.doOCR( clean);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment