How to Fix "undefined" Methods in the Kinect for Windows v1.8.0 Samples provided in the Developer Toolkit [closed]

StackOverflow https://stackoverflow.com/questions/21672078

Question

I recently got my hands on a kinect for windows, downloaded the SDK 1.8.0, the developer toolkit, and visual studio 2013. I am trying to develop software for the kinect using c#. When exploring the developer toolkit, I noticed that some of the examples they provided would not run properly. The following picture is a screenshot of the Background Removal Sample [1] that they provide. I clicked install and then opened the project in visual studio and those are the errors that the program picks up. I have not modified the code at all so I am unsure why their sample is wrong. Hopefully I am just missing a downloaded plug in. All help is appreciated as I dont know where else to turn (Microsoft hasn't been any help)

Thanks!!

EDIT: Here's a closeup on the error boxClose up on Error Box

Was it helpful?

Solution

missing using directive or assembly reference would be enough. Learn about references for projects in VS, find which one is missing and add it.

Probably you have to fix reference to some sdk library because you have it in another directory than it was present for developer who created the sample.

In solution explorer you have solutions and there are References check if there is something with exclamation mark, or search on msdn for class that is causing the issue in which library it is present. Then you can find library in sdk and set correct path to it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top