Skip to content

This project contains extension methods to ease the use of the Kinect SDK with the help of Rx.

Notifications You must be signed in to change notification settings

MarcusKohnert/Kinect.Reactive

Repository files navigation

Kinect.Reactive

This project contains extension methods to ease the use of the Kinect SDK with the help of Rx.

KinectSensor kinect = ...
var mapper = new CoordinateMapper(kinect);
kinect.GetSkeletonFrameReadyObservable()
.Select(JointType.HandRight)
.Select(_ => _.Position)
.Subscribe(_ =>
{
var point = _.MapToColor(mapper);
Console.WriteLine(String.Format("x: {0} y: {1}", point.X, point.Y));
});

About

This project contains extension methods to ease the use of the Kinect SDK with the help of Rx.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages