I'm planning on letting a user draw the shape of a number (1 to 9) in the shape of a 7-segment display. What is the best way to detect what number was drawn?

I know how to do all the touch-tracking and UIGestureRecogniser stuff - I'm looking for a good logic of doing it.

So far, I've got: When a touch moves from 1 half of a segment to the other, highlight that seg. Once touches are finished, check what segs have been highlighted and decide what number drawn.

Ways I've thought of improving it: Draw a shape of the finger's path on screen. If the line intersects the middle of a seg, highlight that seg.

Anyone got any tips or better ways of doing this? I'm open to any suggestion - even if it means scrapping all my code and starting from scratch.

link|improve this question
It would seem you would need to have the user train the application first, so they would draw 0 - 9 a couple of times, you figure out how they do it, then they do it where you are trying to determine the number. Good luck. – James Black Nov 17 '11 at 11:31
Do you have to use this segment technique? This would probably be perfect for some neural network to solve. – janoliver Nov 17 '11 at 11:31
Thanks for the suggestions. I'll try the neural network idea out – Craig Nov 18 '11 at 20:29
feedback

1 Answer

up vote 2 down vote accepted

I've used implementations of the $ stroke recognizers for drawn number recognition.

Both algorithms link to several Objective-C / iOS implementations.

The recognizers will compare input against predefined patterns based on different algorithms (detailed explanation available on the linked pages). For this to work you'll have to make your own number patterns (basically just draw something and let the recognizer convert this to a data structure you store for later use). Then on user input compare to the patterns you recorded earlier to find a match.

The $1 recognizer was sufficient for my application where I would let the user train first to practice drawing the numbers. The $N recognizer is able to distinguish between more complex stokes and might accept more complex drawn numbers. This is something you will have to experiment with.

link|improve this answer
Thanks very much for that info. Sadly, the first obj-c project link for the $1 recognizer is broken, but there are others that I'll try as soon as I can! – Craig Nov 22 '11 at 19:01
Tried this one today: github.com/preble/GLGestureRecognizer . Glad to say it works WONDERFULLY. Thanks again for the fantastic link! – Craig Nov 26 '11 at 16:28
happy to be of help – Joris Kluivers Nov 27 '11 at 22:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.