Suresh Peddisetti
Suresh Peddisetti

Reputation: 3812

How do we recognize the character drawn on my iPhone screen?

I Write Code for Gesture Recognition. In that Code i used touchsBegan ,touchesMoved, touchesEnd Methods. It shows the Shape what i draw on my iPhone Screen.
Now my Task is I want to Recognize the Character Which is Drawn on the screen.

for example if i Draw "A". after some particular timeout my Alertview will be able to Display that Character.
is there any APIs available for Character Recognition?

Upvotes: 3

Views: 561

Answers (1)

Antonio MG
Antonio MG

Reputation: 20410

No, there's no Cocoa Touch API to detect characters that has been drawed on the screen. You'll have t find a 3rd party library that does it or implement your own.

Upvotes: 4

Related Questions