Skip to content

Commit 5935169

Browse files
committed
fix(normalization): use correct pose header
1 parent ccd0543 commit 5935169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pose_anonymization/data/normalization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def unshift_hands(pose: Pose):
3737

3838
def pose_like(pose: Pose, pose_header: PoseHeader):
3939
component_names = [component.name for component in pose_header.components]
40-
component_points = {component.name: component.points for component in pose.header.components}
40+
component_points = {component.name: component.points for component in pose_header.components}
4141
return pose.get_components(component_names, component_points)
4242

4343

0 commit comments

Comments
 (0)