1

I am trying to implement OCR in my java project. I need to read text from an image. While browsing I came across lot of examples for using MODI in .NET project. Can this be done using java? If not possible can you suggest an alternate tool

soorya
  • 13
  • 2

2 Answers2

0

There are various Java-.NET interoperability tools. But I'd suggest you to refer to the following resources:

Java OCR implementation

https://stackoverflow.com/questions/971344/java-based-ocr-sdk-api

Community
  • 1
  • 1
AlexR
  • 114,158
  • 16
  • 130
  • 208
0

There are a couple of Java wrappers for Tesseract OCR engine:

Or you can simply use ProcessBuilder/Process to invoke Tesseract executable and read the output text file as it does in VietOCR.

nguyenq
  • 8,212
  • 1
  • 16
  • 16