This question may go beyond the simple answer here on the overflow stack , but I hope that this will lead me to be able to formulate a few more specific questions to get where I need to be.
I want to write a program that looks for a buffered image for text and returns it as a string. I do not want to write the entire OCR program, but would prefer to use an API that is freely available, such as tesseract. Unfortunately, I could not find the Java API for tesseract.
I know the font is arial, and I know its size. I am wondering if this will help.
I have already managed to capture the screen, but I'm not sure how to perform the next step to identify the text found in the image.
question
How can I implement a simple OCR function in my java program?
source
share