I would like to write an application where you can use your hand instead of mouse. I wrote some WPF and use a hand style and it work good. But I want to use this control outside and WPF window, just like normal mouse coursor. Is it possible to write it with Kinect For Windows V2 ?
Asked
Active
Viewed 920 times
0
-
This type of thing already exists I suggest searching the internet. – Dreamwalker Jan 13 '15 at 11:17
-
Unfortunately I don't find any information about this. – mskuratowski Jan 13 '15 at 11:43
1 Answers
0
What you need is a service, but not WPF app. So that it still can process input from Kinect in background, not only when your app is active and foreground.
You need to emit mouse move/click events in order to use it globally in the whole Windows OS. Here is one of examples on MSDN: https://social.msdn.microsoft.com/Forums/vstudio/en-US/1ea09f18-94f6-4f4f-bcba-d02da27beaa4/control-mouse-position-and-generate-click-from-program-c-winforms-aim-control-pc-from-serial?forum=csharpgeneral

zmechanic
- 1,842
- 21
- 27
-
But can't I build a WPF app and it will be working in background ? – mskuratowski Jan 13 '15 at 12:27
-
-
You can still use your WPF application, as long as it captures Kinect events while being minimized or invisible. – zmechanic Jan 13 '15 at 14:16