Home > Article > Backend Development > What are some useful OCR recognition tools?
Want to recognize characters in a picture
2. Tried an open source package on github https://github.com/netpi/baid...
The recognition accuracy is not high
3. Please help recommend a useful OCR recognition package (php python node will do)
Thank you
Want to recognize characters in a picture
2. Tried an open source package on github https://github.com/netpi/baid...
The recognition accuracy is not high
3. Please help recommend a useful OCR recognition package (php python node will do)
Thank you
Python has a package called pyocr
<code>from PIL import Image from pyocr import pyocr # brew install tesseract def pic_recognization(img): tools = pyocr.get_available_tools() res = tools[0].image_to_string(Image.open(img)) return res</code>
The actual measurement of recognizing numbers is quite accurate, even if there are some letters
Express OCR text recognition software