edvardHua / PoseEstimationForMobile

:dancer: Real-time single person pose estimation for Android and iOS.
Apache License 2.0
1k stars 267 forks source link

Regarding getting the points on human body #131

Open dubesar opened 4 years ago

dubesar commented 4 years ago

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

RichmondAlake commented 4 years ago

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
    ]