I want to create an application that recognizes handwriting on the screen. I don't need it to recognize insanely difficult words; just simple stuff like "A" "BC" "Z" (maybe some shapes, but could be without this). How do people usually go about this? Are there any famous handwriting recognitions that i can try?
Asked
Active
Viewed 2,129 times
1 Answers
0
If you want to recognize single letters and shapes alike I would suggest using GestureOverlayView
.
Read about it here:
http://android-developers.blogspot.com/2009/10/gestures-on-android-16.html
here:
http://www.vogella.com/articles/AndroidGestures/article.html
and here:
http://jayxie.com/mirrors/android-sdk/resources/articles/gestures.html
It is said to be good for casting HarryPotter-like spells too.

MaciejGórski
- 22,187
- 7
- 70
- 94
-
Thanks, i just tried it out, and it's working really well. just what i needed. I do have another question if you could answer: Is it possible to have your phone's lockscreen to be a GestureOverlayView? – rx24race Aug 11 '13 at 15:08
-
@rx24race I don't think so. – MaciejGórski Aug 11 '13 at 16:28