可以将 Microsoft Kinect 与 .NET Gadgeteer 一起使用吗?
根据公开内容,是否有人可以通过 与 Kinect 进行交互.NET Gadgeteer?
可能需要对 驱动程序?
如果您有兴趣,这里是一个 Channel9 视频,向您展示如何使用VS2010创建嵌入式应用程序。它预计于 2011 年春季发布。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将无法在 .NET microframe 上使用 Kinect,它是为 .NET gadgeteer 提供支持的嵌入式 CLR。不过,您可以通过 TCP 套接字连接来连接到 Kinect,这将在 gadgeteer(假设您有网络连接)和完整的 .NET 堆栈中得到支持。使用套接字,您可以来回传递所需的数据。
根据经验,您希望在该管道中传递尽可能少的信息,因此,如果您可以寻找手势控制的内容,我建议您在服务端进行计算,然后简单地在套接字中传递事件标志。
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.