I am developing a gesture based C# application which will predict the gesture with the help of kinect Device (SDK 2.0) . I can do the gesture detection when user is in standing but not working in sitting position . I want to work my gestures in both sitting and standing position . I can get 20 Skeleton in standing with tracked . How can i know whether is user is standing or sitting when i plug kinect device ?
Kinect_sensor = KinectSensor.GetDefault();
BodyFrameReader bodyFrameReader = Kinect_sensor.BodyFrameSource.OpenReader();
bodyFrameReader.FrameArrived += Kinect__SkeletonFrameReady;
Kinect_sensor.Open();
Is there any way to predict the user is in standing / sitting position ?