【发布时间】:2017-05-25 22:59:00
【问题描述】:
我正在使用kinect v2 c# 来检测手势。我使用的所有算法都可以正常工作。问题是我希望kinect 只显示检测到的手而不是全部的身体,并在黑色背景中给出手的所有点?
这是获取轮廓手点的代码。
private void HandsController_HandsDetected(object sender, HandCollection e) {
// Display the results!
if (e.HandLeft != null)
{
point = e.HandLeft.ContourDepth;
}
}
【问题讨论】:
标签: c# kinect gesture-recognition