I'm an experienced C# developer, but all of my previous work has been with business-type applications. I'm really interested in starting to do some work with the Kinect SDK, but I know there's a gap between general purpose programming and the computer vision-type stuff you might need to create great Kinect-enabled apps where you do real time analysis of the incoming stream and parse it into useful information.

Can anyone recommend any books, articles, or other resources that might help a developer really understand the concepts and approaches behind using Kinect and similar vision-based systems? I know the SDK comes with samples but these are fairly simplistic and it would be good to know what I need to know to go to the next level.

link|improve this question

74% accept rate
feedback

3 Answers

Here's a blog post I recently put together on predicting movement using a straightforward extension of the Kinect SDK.

http://redowlconsulting.com/Blog/post/2011/08/04/kinect-prediction.aspx

Good luck and have fun!

link|improve this answer
feedback

Here is an interesting video from Dan Fernandez from MS: http://www.developerfusion.com/media/122294/digging-into-the-kinect-sdk-with-dan-fernandez/

I also found this site interesting on explaining how the technology works: http://www.i-programmer.info/babbages-bag/2003-kinect-the-technology-.html

Useful info on codes for getting depth info: http://digitalerr0r.wordpress.com/2011/06/21/kinect-fundamentals-3-getting-data-from-the-depth-sensor/

Best of luck working with it! I apologize if the resources above are not advanced topic enough.

link|improve this answer
Thanks - I was really looking for something more advanced though. i.e. once I've got all of this data (visual and depth), how would I actually go about processing this to do something cool - either game-related or otherwise. So more of a general computer vision problem rather than anything specifically Kinect-related. – John Aug 4 '11 at 11:53
feedback

Re: "going to the next level"... the best piece of advice I can give is this: unless you are trying to solve a specific problem that requires doing hardcore processing of the raw camera images and depth stream, stay away from the raw image APIs. They are alluring sirens that will suck up all of your time with little to show for it in the end.

The Kinect SDK has a very powerful "Skeleton" API based on a lot of hard work in raw image processing that the folks at Microsoft have done. The skeleton API will tell you the (x,y,z) position of each of several tracked body parts and it will give you this data with surprising accuracy at ~30 time per second.

Getting to the next level with Kinect and actually building useful apps or games is going to require building on top of abstraction layers like this. Using the skeleton, you can pretty easily do things like identify gestures based on the relative positions/velocities of these points and render virutal characters on the screen that move in sync with the user.

link|improve this answer
Hi, thanks for the advice. I guess I am really interested in learning about the raw image processing side of things - I don't intend to recreate the skeleton tracking that's already in there, but it would be great to find out about how it works and how one might go about writing code to process the raw image in other ways. – John Aug 8 '11 at 3:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.