LightBuzz / Vitruvius

A set of easy-to-use Kinect utilities that will speed-up the development of your projects.
http://vitruviuskinect.com
Apache License 2.0
229 stars 82 forks source link

Project not run in visual studio for kinect v2 #3

Closed aa786g closed 9 years ago

aa786g commented 9 years ago

hello guys, how are you doing today.Actually i've a problem the project you are given is not open in compile in visual studio. it gives me a error. it says add an executable project to this solution which reference the library project. Please help me how i slove this..!!!

Vangos commented 9 years ago

Hi @aa786g . Navigate to the Solution Explorer and right-click VitruviusTest. Select "Set as startup project" and you are all set :)

aa786g commented 9 years ago

thank you so much for helping me sir

aa786g commented 9 years ago

static int NumberOfTrackedJoints(params Joint[] joints) { return NumberOfTrackedJoints(joints); }

in the above code when i stand in front of kinect its gives the exception overflow error..!!

Vangos commented 9 years ago

Thank you very much for spotting this out! We have just updated the source code. For your reference, the method should be:

static int NumberOfTrackedJoints(params Joint[] joints) { return NumberOfTrackedJoints(joints.ToList()); }

Do not hesitate to create a new issue if you find any bug.