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.

22 lines
566 B

using Microsoft.Kinect;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibMyGesturesBank
{
public class PostureHandUp : Posture
{
protected override bool TestPosture(Body body)
{
// Exemple de condition : la main droite est plus haute que l'épaule droite
return body.Joints[JointType.HandRight].Position.Y > body.Joints[JointType.ShoulderRight].Position.Y;
}
public override string GestureName => "Hand Up";
}
}