+ 1
How do I convert hand drawn text to a string in Python?
I want to create a program that will take hand drawn text from a touchscreen and convert it into a string as if a person typed it in. It's for a calendar project I'm trying to make. My wife is technically challenged and prefers to write things on a calendar instead of typing them.
2 odpowiedzi
+ 4
You can use those OCR modules (image to text)
https://www.pyimagesearch.com/2017/07/10/using-tesseract-ocr-JUMP_LINK__&&__python__&&__JUMP_LINK/
0
Thanks, I took a quick look at it and I think it might do the trick. I'll take a closer look later today.