手写识别算法
有没有具体的手写识别算法? 该算法应该识别手写字母。
任何人都可以提前提供帮助,我们将不胜感激。
谢谢
Is there any specific algorithm for handwriting recognition?
The algorithm should recognize the hand written letter.
Any one could help would be greatly appreciated in advance.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
有美元识别器系列,您可以使用它来识别单笔或多笔手势(并可能将其映射到您的字母表)该系列的最新成员是 $P 识别器。 这是一个起点: http://depts.washington.edu/aimgroup/proj/美元/pdollar.html
There's the dollar family of recognizers which you can use to recognize single or multistroke gestures (and potentially map that to your alphabet) The lastest member of this family is the $P Recognizer. Here's a starting point: http://depts.washington.edu/aimgroup/proj/dollar/pdollar.html
Google 发布了开源 OCR 引擎 Tesseract OCR,并且它有一个 Python 绑定。
希望这可以帮助。
Google has released an open source OCR engines Tesseract OCR, and It has an Python binding.
Hope this helps.
这个似乎最近赢得了所有主要比赛: https://github.com/alexgraves/RNNLIB/wiki
This one seems to win all the major competitions lately: https://github.com/alexgraves/RNNLIB/wiki
您可以使用遗传算法:
http://www.foibg。 com/ibs_isc/ibs-02/IBS-02-p03.pdf
您可以使用贪心点匹配:
http://www.cs.berkeley.edu/~fateman/msw/GreedyPointMatchWriteup.pdf
我建议阅读这篇论文:
在线和离线手写识别:综合调查
You can use a genetic algorithm:
http://www.foibg.com/ibs_isc/ibs-02/IBS-02-p03.pdf
You can use Greedy Point Match:
http://www.cs.berkeley.edu/~fateman/msw/GreedyPointMatchWriteup.pdf
I would suggest reading this paper:
On-Line and Off-Line Handwriting Recognition: A Comprehensive Survey
OCR 可能是一个很好的起点。
OCR might be a good starting point.