This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

electron-kinect2

0.0.21 • Public • Published

Node-Kinect2

Nodejs library to access the kinect 2 data from the official MS SDK

Still very early / experimental.

Screenshot

var Kinect2 = require('kinect2');

var kinect = new Kinect2();

if(kinect.open()) {
    console.log("Kinect Opened");
    //listen for body frames
    kinect.on('bodyFrame', function(bodies){
        for(var i = 0;  i < bodies.length; i++) {
            console.log(bodies[i]);
        }
    });

    //request body frames
    kinect.openBodyReader();

    //close the kinect after 5 seconds
    setTimeout(function(){
        kinect.close();
        console.log("Kinect Closed");
    }, 5000);
}

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i electron-kinect2

    Weekly Downloads

    7

    Version

    0.0.21

    License

    MIT

    Last publish

    Collaborators

    • jgeurts