4

Apple has added searchable handwriting to the Notes app in iOS 11 (iOS 11 Preview link). This allows you to write on the iPad Pro screen with the Pencil, and later find the text, as you would if you had typed it. Is there an API so that developers can add this to their own apps?

Rob N
  • 15,024
  • 17
  • 92
  • 165

1 Answers1

3

There is no such API in iOS 11. But you could achieve this by using Vision Framework + CoreML. Vision can detect text rectangle and characters rectangles (https://developer.apple.com/documentation/vision/vntextobservation). After that you could pass images of each character to a trained CoreML model.

Nikita Gaidukov
  • 771
  • 4
  • 14