Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple applications on the same kinect device

Tags:

c#

.net

kinect

Is is possible to have multiple applications which are using the same kinect device?

like image 209
Simon Avatar asked Feb 19 '23 23:02

Simon


2 Answers

Multiple applications can't use same Kinect device as one app can only request one Kinect sensor. You can however choose one of the ways listed below

  • Use multiple Kinects so each app uses separate Kinect

  • Use single Kinect for one of the app and share data across applications using inter-process communication

like image 179
Atul Verma Avatar answered Feb 28 '23 03:02

Atul Verma


Multiple applications cannot share the device itself however using Kinect Service you can build one application that can act as a bridge between two apps sharing the color, skeletal, and depth data. The only thing you won't be able to do out of the box is tilt the Kinect.

Another work around is to have multiple applications or windows tied to one project using a separate Kinect class to provide access to the SDK functions.

like image 31
davidbates Avatar answered Feb 28 '23 02:02

davidbates