Kinect web application management API

I would like to connect kinect (sorry) to the PC so that users can interact with my webapp through gestures. I have no clear idea of ​​what level of programming is involved in achieving this, but the JavaScript API will be perfect (Java will be tolerant too).

I looked at DepthJS, but the installation / installation itself almost defeated me. At a minimum, I need the user to be able to move the cursor and click, but ideally I would also like them to be able to use smartphone gestures such as pinching.

Is there an accessible API that provides these functions that can be installed / configured relatively easily and can be programmed using JavaScript? I don't know if that matters, but I will do development on Ubuntu.

+4
source share
3 answers

Kinesis is used by web developers who already know the best HTML / CSS / JavaScript. This way you can reuse existing code and an existing command to create gesture-based applications on top of the Kinect for Windows SDK

Zigfu provides a browser plugin called ZigJS for Kinect and will allow you to use Kinect HTML / JavaScript applications using hand gestures.

OpenKinect is an open community of people interested in using the amazing Xbox Kinect hardware with our PCs and other devices. They are working on free, open source libraries that will allow Kinect to be used with Windows, Linux, and Mac.

+5
source

Don about it

At a minimum I need the user to be able to move the cursor and click, but ideally I'd also like them to be able to use smartphone gestures such as pinching.

You will find many examples of mouse cursor tracking. I think connecting the mouse to kinect is one of the first things that kinect tries to do. This is a very simple thing. You just connect the cursor to one connection, track it and scale to control resolution :)

But I'm not sure you want it. Even at least. I remember that on channel 9 I watched a movie about kinect-controlled sites. This technology exists 100% and is stable. So you just need to look there.

IMO will focus on api`a / frameworks for this. The reason for connecting your mouse to kinect just to use this on websites has many disadvantages

0
source

Last September, Microsoft released the new SDK 1.8 with the Kinect.js library. I'm sure this is what you need http://blogs.msdn.com/b/kinectforwindows/archive/2013/09/16/updated-sdk-with-html5-kinect-fusion-improvements-and-more. aspx

0
source

Source: https://habr.com/ru/post/1441987/


All Articles