Giter VIP home page Giter VIP logo

kinect-controls's Introduction

Kinect Controls

This project contains some Kinect user controls you can integrate and use into your own applications. Oh, and it's amazingly easy!

Like this project? Buy me a beer!

Kinect cursor control

Image

Kinect Cursor control displays a hand icon that follows the movements of the user's hands. It is a vector shape (no bitmap images used), so you can scale, resize, or change its colors within your code.

Using the code

  • Build the project

  • Add a reference to the KinectControls library

  • Import the user controls into your XAML code using the following line of code

    xmlns:Controls="clr-namespace:KinectControls;assembly=KinectControls"

  • You can now use the controls as follows:

XAML

<Controls:KinectCursor x:Name="cursor" Width="100" Height="100" />

Need a different color? Here you are:

<Controls:KinectCursor x:Name="cursor" Width="100" Height="100" Fill="Blue" />

C-Sharp

// Select the hand closer to the sensor.
var activeHand = handRight.Position.Z <= handLeft.Position.Z ? handRight : handLeft;

// Get the hand's position relatively to the color image.
var position = _sensor.CoordinateMapper.MapSkeletonPointToColorPoint(
                                        activeHand.Position,
                                        ColorImageFormat.RgbResolution640x480Fps30);

// Flip the cursor to match the active hand and update its position.
cursor.Flip(activeHand);                            
cursor.Update(position);

That's it, folks! You now have a cursor control that follows the active hand of a user.

Credits

License

You are free to use these libraries in personal and commercial projects by clearly attributing their original author. Licensed under MIT License.

Like this project? Buy me a beer!

kinect-controls's People

Contributors

vangos avatar

Watchers

guozanhua avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.