Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MarcusKohnert/FluentKinect
Set up a Kinect Sensor in a fluent style.
https://github.com/MarcusKohnert/FluentKinect
Last synced: 24 days ago
JSON representation
Set up a Kinect Sensor in a fluent style.
- Host: GitHub
- URL: https://github.com/MarcusKohnert/FluentKinect
- Owner: MarcusKohnert
- Created: 2013-04-30T06:29:30.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-30T17:07:05.000Z (over 11 years ago)
- Last Synced: 2024-11-10T16:32:41.353Z (about 1 month ago)
- Language: C#
- Size: 115 KB
- Stars: 10
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- my-awesome - FluentKinect - Set up a Kinect Sensor in a fluent style. (C#)
README
FluentKinect
============Set up a Kinect Sensor in a fluent style.
var sensor = await KinectConnector.GetKinect();
sensor.EnableColorStream()
.EnableSkeletonStream()
.EnableDepthStream()
.Seated()
.NearMode()
.Start();