Coder Social home page Coder Social logo

dut3062796s / kinect2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wouterverweirder/kinect2

0.0 2.0 0.0 496 KB

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

License: MIT License

Python 0.97% JavaScript 6.86% C++ 90.96% C 1.20%

kinect2's Introduction

Node-Kinect2

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

Screenshot

Installation

You will need to install the official Kinect 2 SDK before you can use this module.

node.js

You need at least node version 0.12 to use this module. Older versions do not work. Just use npm install:

npm install kinect2

electron

If you want to use this module inside an electron application, you will need to build this module for electron usage. I've provided a build script which does just that.

You will need to have node-gyp & it's dependencies installed (https://github.com/nodejs/node-gyp) before you can continue.

# cd into the directory of kinect2
cd node_modules\kinect2
# run my build script to create a native binary for electron
npm run build:electron

Usage

var Kinect2 = require('kinect2');

var kinect = new Kinect2();

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

	//request body frames
	kinect.openBodyReader();

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

kinect2's People

Contributors

wouterverweirder avatar nikolakanacki avatar

Watchers

杜鹏 avatar  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.