I'm using the Kinect-SDK to track a person. However, the Kinect-SDK is only giving me information about the joints. I would like to get every pixel that is associated with a specific body part or joint.
For example, I want only my hand, foot, or whatever limb to be visible and the rest of the image should be removed. However, I did not find a way to associate a pixel with a specific part of the persons body. The only thing I found was that a depth pixel can be associated with a player but does it get any more specific?
I know that the SDK is labeling the body parts of a tracked person in order to compute the skeleton, but is this information still accessible somehow? http://research.microsoft.com/apps/pubs/default.aspx?id=145347
CoordinateMapper
and OpenCV'sfindContours
to pull limbs out. – Nicholas Pappas