If it's acceptable to require button press/release, then the user presses the button before starting the swipe, then releases it at the end of the swipe. Then you compare the start and end positions. The axis with the largest change in position, and its direction, is your swipe. Example, from 1,4 to 20,100 is an up swipe.

This would be like swiping on a virtual touch screen. the button press being like your finger contacting the screen, and the release being like your finger lifting off the screen.

Otherwise, you could try filtering out "swipes" shorter than some threshold, then "decode" the remaining (large) swipes the same as above.

You will need to experiment to determine the threshold.

It is possible to devise an adaptive algorithm for distinguishing random hand movement from intentional swipes by tracking the largest "small" movement over a sliding wondow window of a few minutes, then accepting a movement significantly larger as a control swipe. Again, you will have to experiment.


In reply to Re: Detecting swipe movements by RonW
in thread Detecting swipe movements by morgon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.