Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong bone inside BODY_34_BONES #245

Open
2 tasks done
StephanHasler opened this issue Feb 24, 2025 · 0 comments
Open
2 tasks done

Wrong bone inside BODY_34_BONES #245

StephanHasler opened this issue Feb 24, 2025 · 0 comments
Labels

Comments

@StephanHasler
Copy link

StephanHasler commented Feb 24, 2025

Preliminary Checks

  • This issue is not a duplicate. Before opening a new issue, please search existing issues.
  • This issue is not a question, feature request, or anything other than a bug report directly related to this project.

Description

I want to use the local_[position,orientation]_per_joint from the SDK.
To my understanding it gives the pose of each joint relative to its parent joint.
So e.g. the pose of the RIGHT_HIP in the PELVIS (BODY34 model).
I want to convert each local pose to an absolute pose in the camera.
For this I'm traversing the BODY_34_BONES, to accumulate the local transformations.
The BODY_34_BONES contains following entries:

(BODY_34_PARTS.LEFT_ANKLE, BODY_34_PARTS.LEFT_FOOT),
(BODY_34_PARTS.LEFT_ANKLE, BODY_34_PARTS.LEFT_HEEL),		
(BODY_34_PARTS.LEFT_HEEL, BODY_34_PARTS.LEFT_FOOT),

I think the last line is wrong. The LEFT_FOOT cannot be child of the LEFT_HEEL and LEFT_ANKLE at the same time. Also in the image in the online docu for BODY34 the LEFT_FOOT is only child of the LEFT_ANKLE.

The same issue exists for the RIGHT_FOOT.

Steps to Reproduce

...

Expected Result

(BODY_34_PARTS.LEFT_ANKLE, BODY_34_PARTS.LEFT_FOOT),
(BODY_34_PARTS.LEFT_ANKLE, BODY_34_PARTS.LEFT_HEEL),

Actual Result

(BODY_34_PARTS.LEFT_ANKLE, BODY_34_PARTS.LEFT_FOOT),
(BODY_34_PARTS.LEFT_ANKLE, BODY_34_PARTS.LEFT_HEEL),
(BODY_34_PARTS.LEFT_HEEL, BODY_34_PARTS.LEFT_FOOT),

ZED Camera model

ZED Mini

Environment

OS: Ubuntu 22.04
ZED SDK: 4.2.3
pyzed: 4.2

Anything else?

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

1 participant