KinectStatus在Kinect V2上 [英] KinectStatus on Kinect V2

查看:108
本文介绍了KinectStatus在Kinect V2上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,我需要知道是否有可能获得Kinect V2的状态,这与V1上的代码一致:

 

KinectSensor kinect = null;

foreach(KinectSensor.KinectSensors中的var potentialSensor)
{
if(potentialSensor.Status == KinectStatus.Connected)
{
kinect = potentialSensor;
休息;
}
}

非常感谢你。

解决方案

目前我正在使用属性IsAvailable,但要使用它我必须打开传感器以检查它是否已连接。是否有其他方法可以在不启动传感器的情况下检查设备是否连接到计算机?感谢

Hello, I need to know if its possible to obtain the status of the Kinect V2, something along the lines of this code on V1:

KinectSensor kinect = null;

foreach (var potentialSensor in KinectSensor.KinectSensors) { if (potentialSensor.Status == KinectStatus.Connected) { kinect = potentialSensor; break; } }

Thnak you very much.

解决方案

Currently I'm using the property IsAvailable, but to use this I have to open the sensor to check if it is connected. Is there another way to check if the device is conected to the computer without starting the sensor? Thanks


这篇关于KinectStatus在Kinect V2上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆