Scan image to text in Python-Django

I am currently working on a project in python-django. The user must enter some data, currently this is done by entering. I want an alternative data entry method, I prefer to convert the image to text. Someone please help me implement a method in django-python for the same?

+4
source share
1 answer

I assume you are looking for pytesser - this is OCR in python using tesseract. It is used to convert text to image in a string.

pytesser can be downloaded from: https://code.google.com/p/pytesser/downloads/list

You will need a PIL to work with images in memory. This can be downloaded using: http://www.pythonware.com/products/pil/

You can choose the appropriate version of PIL according to the python version.

Hope this helps.

+3
source

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


All Articles