Algorithm to recognise mouse movements

2019-04-10 23:05发布

问题:

Am wondering if there has been any research/algorthms which specify the amount of deviation of the mouse while recognizing characters like say "?" drawn using the mouse. Something a sort of optical character recognition, but probably a simpler version. Is there some algorithm using which I can say that a question mark drawn by the user is really a question mark and not something else with some amount of accuracy ofcourse. Something like what windows tablet software allows (while writing with the tablet stylus).

Thank you for your time.

回答1:

  1. Mouse gestures recognition


回答2:

Dynamic Time Warping is the basis for one commercially available handwriting recognition system. Basically, it's a way to give you a distance measure from a sequence of input to a stored template. Correctly implemented, for instance basing it on numerical derivaties, it can be scale and position invariant.