Handwritten text recognition php

跟風遠走 提交于 2019-12-03 14:00:48

问题


I am thinking of creating a certain web system. It involves a lot of different (random) people uploading scanned documents of stuff they wrote.

Is there any PHP open source way converting these handwritten texts to machine text?

I found this question but would like to know if it is capable of recognizing a lot of random & different people's writing?

Do anyone have experience to share of this field?


回答1:


See related question on SO: handwriting recognition with simple training

Image-based handwriting recognition is also known as Off-line handwriting recognition.

If the handwritten characters are always capital-letter, post-office style, it can be handled by Intelligent Character Recognition (ICR), which is image-based.

The difference between off-line (image-based) and on-line (real-time) recognition is that the latter requires you to record the timestamp (position and velocity) of each stroke as it is being written.

An image-based recognition engine can handle on-line data by converting the timestamped strokes into an image. To the contrary, an on-line recognition engine cannot handle image-based inputs. As such, on-line recognition is technically easier and open-source projects are available.

Several Wikipedia articles contain lists of OCR/ICR software providers:

  • http://en.wikipedia.org/wiki/List_of_optical_character_recognition_software
  • http://en.wikipedia.org/wiki/Intelligent_character_recognition

An example of on-line handwriting recognition engine (open-source):

  • http://tegaki.org/



回答2:


i have done ocr from php using tesseract-ocr

http://code.google.com/p/tesseract-ocr/

the results weren't that great, and i doubt it supports handwriting but i would be interested to see what others have done




回答3:


This is not possible as hand-writing differs too much that a computer program can find the pattern to recognize the text in there. You can try with OCR, ideally with a library that interfaces well with PHP e.g. via shell for a starter. See Ocrad - The GNU OCR.



来源:https://stackoverflow.com/questions/6976148/handwritten-text-recognition-php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!