Xavi G
Xavi G

Reputation: 13

Kinect 2.0 polling frames

I'm working on a c# .net project using a Kinect device and the official sdk 2.0. Right now I'm processing the frames via events but I'd like to try it via polling method I've read about it in the documentation of the 1.0 version of the sdk but I've found nothing specific about the 2.0 version Has Microsoft dropped support for polling frames or am I missing something?

Upvotes: 1

Views: 207

Answers (1)

16per9
16per9

Reputation: 502

Polling is restricted to Kinect SDK 1.5 to 1.8 Check - https://msdn.microsoft.com/en-us/library/hh973076.aspx

For kinect SDK 2.0 you should use MultiSourceFrameReady Check - https://msdn.microsoft.com/en-us/library/microsoft.kinect.multisourceframereader.aspx

And - http://kinect.github.io/tutorial/

Upvotes: 1

Related Questions