views:

227

answers:

2

I am trying to take an image and extract hand written text so that it can be read easily and zoomed in on. I would like to convert the text to vector paths.

I am not aware of any libraries that would make this as painless as possible. Any help is greatly appreciated. Examples are nice too :)

A: 

The only program I know of for the iPhone that does handwriting recognition is HWPEN. Unfortunately, it's not a library but a full application and (to make matters worse) it requires a Jailbroken phone.

I fear you must either try to get the source for HWPEN or reverse engineer it to obtain the code you need.

Barring that, you may want to write your own. There are several studies on handwriting recognition that may help.

Randolpho
+3  A: 

Simple iPhone Image Processing (on Google code) contains all the primitive tools you will need:

Roger Nolan