务本寻道

Kinect for windows v2 骨架图

自制Kinect2.0的骨架图,有需要的留存。

 // 摘要: 
    //     The types of joints of a Body.
    public enum JointType
    {
        // 摘要: 
        //     Base of the spine.
        SpineBase = 0,
        //
        // 摘要: 
        //     Middle of the spine.
        SpineMid = 1,
        //
        // 摘要: 
        //     Neck.
        Neck = 2,
        //
        // 摘要: 
        //     Head.
        Head = 3,
        //
        // 摘要: 
        //     Left shoulder.
        ShoulderLeft = 4,
        //
        // 摘要: 
        //     Left elbow.
        ElbowLeft = 5,
        //
        // 摘要: 
        //     Left wrist.
        WristLeft = 6,
        //
        // 摘要: 
        //     Left hand.
        HandLeft = 7,
        //
        // 摘要: 
        //     Right shoulder.
        ShoulderRight = 8,
        //
        // 摘要: 
        //     Right elbow.
        ElbowRight = 9,
        //
        // 摘要: 
        //     Right wrist.
        WristRight = 10,
        //
        // 摘要: 
        //     Right hand.
        HandRight = 11,
        //
        // 摘要: 
        //     Left hip.
        HipLeft = 12,
        //
        // 摘要: 
        //     Left knee.
        KneeLeft = 13,
        //
        // 摘要: 
        //     Left ankle.
        AnkleLeft = 14,
        //
        // 摘要: 
        //     Left foot.
        FootLeft = 15,
        //
        // 摘要: 
        //     Right hip.
        HipRight = 16,
        //
        // 摘要: 
        //     Right knee.
        KneeRight = 17,
        //
        // 摘要: 
        //     Right ankle.
        AnkleRight = 18,
        //
        // 摘要: 
        //     Right foot.
        FootRight = 19,
        //
        // 摘要: 
        //     Between the shoulders on the spine.
        SpineShoulder = 20,
        //
        // 摘要: 
        //     Tip of the left hand.
        HandTipLeft = 21,
        //
        // 摘要: 
        //     Left thumb.
        ThumbLeft = 22,
        //
        // 摘要: 
        //     Tip of the right hand.
        HandTipRight = 23,
        //
        // 摘要: 
        //     Right thumb.
        ThumbRight = 24,
    }