开发者

Are there any handwriting recognition libraries available for the iPhone? [closed]

开发者 https://www.devze.com 2023-01-14 18:19 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.

Closed 8 years ago.

Improve this question

I am looking for a simple (preferably open source) handwriting recognition library for the iPhone/iPad. In my case, I'm only interested in recognizing numbers.

Does anyone know of a good开发者_开发技巧 library for this?


You would have to make some efforts to compile but Tesseract is good solution.

For compiling it look http://iphone.olipion.com/cross-compilation/tesseract-ocr. For sample application see http://robertcarlsen.net/tag/tesseract


There are many libraries available for extracting text from images. You can check my answer

For restricting OCR to provide numbers only Tesseract SDK provides method as blacklist and whitelist characters

_tesseract->SetVariable("tessedit_char_whitelist", "0123456789");

Using this method you can restrict only numbers to be recognized.

Hope it helps.

0

精彩评论

暂无评论...
验证码 换一张
取 消