26

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

Yuval F
  • 20,565
  • 5
  • 44
  • 69
Ambika
  • 687
  • 3
  • 11
  • 19

5 Answers5

23

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

karim79
  • 339,989
  • 67
  • 413
  • 406
  • 1
    Boosting was another easy, adaptive method for recognizing handwriting. check out adaboost, and its surrounding papers. – nlucaroni Jul 30 '09 at 13:56
2

OCR might be a good starting point.

Samuel Carrijo
  • 17,449
  • 12
  • 49
  • 59
2

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

Quickredfox
  • 1,428
  • 14
  • 20
1

Google has released an open source OCR engines Tesseract OCR, and It has an Python binding.
Hope this helps.

sunqiang
  • 6,422
  • 1
  • 32
  • 32
1

This one seems to win all the major competitions lately: https://github.com/alexgraves/RNNLIB/wiki

RamC
  • 1,287
  • 1
  • 11
  • 15
bayer
  • 6,854
  • 24
  • 35