Closed sascharo closed 3 months ago
It looks like you passed the wrong object to the method. The method expects a 'BvhJoint' but you passed the 'BvhContainer'. If you look to this example here ,you can use the root joint from the container.
The fix for your code might be probably: self.hierarchy = bvhio.convertBvhToHierarchy(bvh_data.Root)
It looks like you passed the wrong object to the method. The method expects a 'BvhJoint' but you passed the 'BvhContainer'. If you look to this example here ,you can use the root joint from the container.
The fix for your code might be probably:
self.hierarchy = bvhio.convertBvhToHierarchy(bvh_data.Root)
You're correct. Thanks for the help!
I read BVH files from the Carnegie-Mellon Graphics Lab Motion Capture Database and from the Bandai-Namco-Research-Motiondataset, but when converting it to a hierarchical structure with
bvhio.convertBvhToHierarchy
I get the following error:What is the reason for that, and any idea how I can prevent it?