PoseEstimationForMobile icon indicating copy to clipboard operation
PoseEstimationForMobile copied to clipboard

Regarding getting the points on human body

Open dubesar opened this issue 5 years ago • 1 comments

Can you specify the indices of all the points with their names such as top, right knee , hip, etc

dubesar avatar Apr 01 '20 21:04 dubesar

I believe this is what you are looking for:

    let pointLabels: [String] = [
        "top",          //0
        "neck",         //1
        "R shoulder",   //2
        "R elbow",      //3
        "R wrist",      //4
        "L shoulder",   //5
        "L elbow",      //6
        "L wrist",      //7
        "R hip",        //8
        "R knee",       //9
        "R ankle",      //10
        "L hip",        //11
        "L knee",       //12
        "L ankle",      //13
    ]

RichmondAlake avatar Apr 02 '20 09:04 RichmondAlake