0
votes

I am having a application which is being developed using wpf. The interaction for the application is being done using mouse. Now I need to convert the application which is on mouse click into gesture based application using Kinect. What do I need to do to enable gestures in my current application? My application has button clicks, zooming the image, scroll the content, move the content, rotate zoom and move the 3d model.

1

1 Answers

0
votes

There are touch/gesture-based events that you can hook up to, assuming the Kinect API will trigger them (TouchDown, TouchMove, TouchUp..).

If the Kinect API will not trigger them (or anything in WPF), you might need to write using an external touch/gesture-handling library (ex. http://www.codeproject.com/Articles/56385/Gesture-Recognition-for-Touch-Devices-Touch-Gestur - granted this is quite old) or write a UI in something Kinect-friendly like perhaps XNA/MonoGame.