Is it possible to recognize a character on an iPhone using Tesseract OCR?

Over the past 2 weeks, I’ve been trying to implement "Recognize the character drawn on the iPhone screen."
i search for it and i found a Tesseract OCR.

Using Tesseract OCR, we can recognize the characters from the image.
Now my question is: is it possible to recognize the character drawn on the iPhone screen using Tesseract OCR?

if possible give me some initial steps to achieve this.

+6
source share
1 answer

Computer Vision is all about training. You need to create several hundred (maybe thousands) of sample images of what you can try to analyze in order to train Tesseract to detect it. As soon as you think that you are sufficiently prepared, train with new images. Then new images reappear. The more sample data, the better. Once you have an artificial AI, taking a screenshot from the user's login is trivial, pass it to Tesseract for analysis. Be sure to enable the “Help us in learning with this image” feature in your application if you make a mistake, so you can learn in real time from users.

+6
source

All Articles