Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to write a piece of software that could convert a touchpad into a writepad. For example, if you write 'A','B' or 'C' on the touchpad with your finger, the software should enter that character to stdin.

I don't know how to get started with this project. What would you suggest?

share|improve this question
Why did you put C# as a tag when you are a java developer? – Phoexo Oct 21 '09 at 14:49
i can lear C# too – user189352 Oct 21 '09 at 14:51
lanuages is not a issue. – user189352 Oct 21 '09 at 14:52

1 Answer

The biggest challenge would be to convert tracker (it doesn't have to be a touch pad, mouse would work as well) movement to drawn forms that are interpreted as letter forms. That's the non-trivial task.

If I wanted to write that bit on my own, my first instinct would be to use a neural net that is trained to recognize letter forms. (Related question.)

share|improve this answer
You simply need to capture relative movement of the tracker once a drawing action is started. Think through the problem using the mouse (and a mouse key press to indicate drawing action) and related mouse movement events. Using a touch pad simply removes the need for coordinating mouse movement and mouse key press, that's all. – alphazero Oct 21 '09 at 15:09
@alphazero:thanks man – user189352 Oct 21 '09 at 15:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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