aboutme.be

Azure Kinect Library for Node and Electron


hero image

A couple of weeks ago, my Kinect for Azure arrived (thank you Lisa Jamhoury to shipping me one!). And: oh my god, it is so tiny, compared to the Kinect 2!

The size does seem to come with a prize: you need a beefy computer + GPU in order to get decent skeletron tracking performance. The reason behind this is the skeleton tracking is now happing through CUDA accelerated Machine Learning models. Not quite sure about this approach, as the load on your system is quite high, and the gains in tracking seem only marginal compared to the Kinect v1.

I quickly went ahead and started putting together a nodejs native extension to access the data from the Kinect. In my Kinect2 extension, I was using the native abstractions for nodejs package a.k.a. nan. But since then, there’s a new way of building native nodejs extensions, through N-API. The benefit of this is ABI stability: no more need to recompile for different nodejs or electron versions! So I wanted to go for that approach for my new library.

screenshot of demo app

You can find my azure kinect for nodejs/electron library on Github. Right now it has the following features:

Stay tuned for further updates, such as user masking and accessing other sensor data (accelerometer, temperature, …)