如何在OpenNI中獲得我的kinect設備的序列號?我正在使用 avin2的SensorKinect驅動程序。如何使用OpenNI獲得Kinect序列號?
我嘗試以下,但我只在我的變量serial
得到「0」:
xn::NodeInfoList possibleChains;
context.EnumerateProductionTrees(XN_NODE_TYPE_DEVICE,NULL,possibleChains,NULL);
for(xn::NodeInfoList::Iterator i = possibleChains.Begin(); i !=
possibleChains.End(); ++i)
{
xn::NodeInfo node = *i;
nRetVal = context.CreateProductionTree(node);
xn::Device device;
nRetVal = node.GetInstance(device);
XnChar serial[1024];
device.GetIdentificationCap().GetSerialNumber(serial, 1024);
}