You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
using KinectUtils;
|
|
using Microsoft.Kinect;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyGestureBank
|
|
{
|
|
/// <summary>
|
|
/// The two hands up posture.
|
|
/// </summary>
|
|
public class PostureTwoHandsUp : Posture
|
|
{
|
|
public PostureTwoHandsUp()
|
|
{
|
|
GestureName = "Two Hands Up";
|
|
}
|
|
|
|
/// <summary>
|
|
/// The test gesture method.
|
|
/// </summary>
|
|
/// <param name="body">The body</param>
|
|
public override void TestGesture(Body body)
|
|
{
|
|
if (TestPosture(body))
|
|
{
|
|
Console.WriteLine("Gesture recognized, two hands up");
|
|
Thread.Sleep(1000);
|
|
|
|
OnGestureRecognized();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// The test posture method.
|
|
/// </summary>
|
|
/// <param name="body"></param>
|
|
/// <returns></returns>
|
|
/// <exception cref="NotImplementedException"></exception>
|
|
protected override bool TestPosture(Body body)
|
|
{
|
|
// Check if two hands are up
|
|
return body.Joints[JointType.HandRight].Position.Y > body.Joints[JointType.ShoulderRight].Position.Y &&
|
|
body.Joints[JointType.HandLeft].Position.Y > body.Joints[JointType.ShoulderLeft].Position.Y;
|
|
}
|
|
}
|
|
}
|