I have a question while reading the project code, specifically in py_bindings.cpp:
The line m.def("get_body_joints_pose", &getBodyJointsPose, "Get the body joints pose data (24 joints, 7 values each: x,y,z,qx,qy,qz,qw.");states that it reads data for 24 joints.
How does the code obtain data for all 24 joints when only using a headset, controllers, and a few Motion Trackers? If the hardware setup cannot directly provide all 24 joints, how is the full skeleton data generated?
If data for some joints is not directly obtained from the hardware, how are these missing joints handled? How are their values filled or inferred?