Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Possible to use the Microsoft Kinect with .NET Gadgeteer?

Based on what's public, is it possible that someone can interact with the Kinect with the .NET Gadgeteer?

What (if anything) probably needs to be done to the drivers?

If you're interested, here is a Channel9 video that shows you how to use VS2010 to create an embedded application. It is due to release in Spring of 2011.

like image 643
makerofthings7 Avatar asked Nov 14 '22 05:11

makerofthings7


1 Answers

You won't be able to use Kinect on the .NET microframe, which is the embedded CLR that powers .NET gadgeteer. You could however connect to the Kinect via a TCP Socket connections, which would be supported in gadgeteer (assuming you have a network connection) and the full .NET stack. Using the sockets you could pass the data back and forth you need. From experience you want to pass as little information down this pipe as possible, so if you can look for something gesture controlled I would suggest you calculate this at the service end, and simply pass an event flag down the socket.

like image 115
LewisBenge Avatar answered Dec 18 '22 13:12

LewisBenge