Mar 12, 2012 at 8:41 AM
Edited Mar 12, 2012 at 8:41 AM
|
Hi,
How can I detect Swipe to Right and
Swipe to Left for Left Hand?
I tried below but doesn't seems to work:
if (joint.JointType == JointType.HandLeft)
{
swipeGestureRecognizer.Add(joint.Position, kinectSensor);
circleGestureRecognizer.Add(joint.Position, kinectSensor);
}
Thanks.
|
|
|
|
Hi
I've got the same problem. Please keep me in touch if you find any solution.
Thanks
|
|
|
|
Try
Skeleton data = (from ss in Skeletons
where ss.TrackingState == SkeletonTrackingState.Tracked
select ss).FirstOrDefault();
SwipeGestureDetector sgd = new SwipeGestureDetector();
sgd.Add(data.Joints[JointType.HandLeft].Position, runtime);
</Clatonh>
|
|