IOS: How to implement handwriting recognition?

Starting iOS development, I want to implement handwriting recognition in my application.

I did a google search, but I did not find any tutorial implementing a text gesture in an object c

Is there a basic tutorial available that implements a text gesture ...

for example: when the user writes A on the screen, the screen should display A

Is there a demo tutorial for this project?

+6
source share
2 answers

Check out this sample application . In this application, you must first provide a training character, and then the application will detect your handwriting. enter image description here

+18
source

There are no "text" gesture recognizers. What you describe is called handwriting recognition.

The only built-in support for handwriting recognition is the Chinese keyboard settings with handwriting. There is no API for manuscript recognition.

It appears that there are no open source handwriting recognition projects specifically designed for iOS.

You just need to look for a common open source handwriting recognition library and port it to iOS.

+4
source

Source: https://habr.com/ru/post/907463/


All Articles