Vitruvius is a set of easy-to-use Kinect utilities that will speed-up the development of your projects. Supports WPF and Windows Store. Requires Kinect 2.
Grab the package using NuGet
PM> Install-Package lightbuzz-vitruvius
... and import Vitruvius in your project
using LightBuzz.Vitruvius;
var bitmap = colorFrame.ToBitmap();
var bitmap = depthFrame.ToBitmap();
var bitmap = infraredFrame.ToBitmap();
bitmap.Save("Capture.png");
var bitmap = colorFrame.GreenScreen(depthFrame, bodyIndexFrame);
var body = bodyFrame.Bodies().Closest();
double height = body.Height();
viewer.DrawBody(body);
double angle = elbow.Angle(shoulder, wrist);
double angle = elbow.Angle(shoulder, wrist, Axis.Z);
double radians = angle.ToRadians();
double degrees = radians.ToDegrees();
var point = joint.Position.ToPoint(Visualization.Color);
void GestureRecognized(object sender, GestureEventArgs e)
{
var gesture = e.GestureType;
switch (gesture)
{
case (GestureType.JointHands): break;
case (GestureType.Menu): break;
case (GestureType.SwipeDown): break;
case (GestureType.SwipeLeft): break;
case (GestureType.SwipeRight): break;
case (GestureType.SwipeUp): break;
case (GestureType.WaveLeft): break;
case (GestureType.WaveRight): break;
case (GestureType.ZoomIn): break;
case (GestureType.ZoomOut): break;
}
}
KinectViewer // Displays streams and skeletons.
KinectAngle // Displays an arc.
KinectJointSelector // Allows you to select a joint visually.
Avateering (Academic & Premium Versions)
Avateering.Update(model, body);
HD Face with properties (Academic & Premium Versions)
Face face = faceFrame.Face();
var nose = face.Nose;
var mouth = face.Mouth;
var chin = face.Chin;
var jaw = face.Jaw;
var eyeLeft = face.EyeLeft;
var eyeRight = face.EyeRight;
var cheekLeft = face.CheekLeft;
var cheekRight = face.CheekRight;
var forehead = face.Forehead;
- Vangos Pterneas from LightBuzz
- George Karakatsiotis from LightBuzz
- Michael Miropoulos from LightBuzz
- George Georgopoulos from LightBuzz
You are free to use these libraries in personal and commercial projects by attributing the original creator of Vitruvius. Licensed under Apache v2 License.