I have used the SwipeGestureRecognizer where it has only swipe left and swipe right gesture recognization but i want swipe up/down for both the hands how to do it ..
Any idea......
SwipeGestureRecognizer is a dll so I am unable to see the logic for the swipe recognizer.
public event EventHandler<KinectGestureEventArgs> SwipeLeftDetected;
public event EventHandler<KinectGestureEventArgs> SwipeRightDetected;
Can any one have the code for SwipeGestureRecognizer logic so that I can understand and try to implement for swipe up also.
Thanks in advance!
I'm taking a bit of a shot in the dark here, but if you're referring to the Kinect Toolbox, there's a Codeplex project set up for it. Specifically, you should take a look at SwipeGestureDetector.cs.
Actually, looking at your description and the code on Codeplex, you might not be using the Kinect Toolbox, but this might be a good time to start. Also, it should be relatively simple to add in Up/Down swipe recognition to the linked .cs file.