Python image recognition

I have an idea, that is, I want to identify the letters in the image, which can be .bmp or .jpg.

For example, here is a .bmp image with the letter "S" in it. What I want to do is identify the email using Python.

enter image description here

This is similar to those auth code recognition Questions, and I read some of these Qs, but still can't figure out what to do.

Any advice is appreciated.

+4
source share
2 answers

You are probably looking for OpenCV tools; it is commonly used for tasks where the software must β€œrecognize” the content or functions of images.

+5
source

There is also an entire Ocropus system that has Python bindings or perhaps better Python bindings to tesseract

+5
source

Source: https://habr.com/ru/post/1381412/


All Articles