Skip to content

Commit

Permalink
fix forgetting to assign in preprocess_pose
Browse files Browse the repository at this point in the history
  • Loading branch information
cleong110 committed Jan 9, 2025
1 parent ec09e3c commit 66361ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ build/
pose_evaluation.egg-info/
**/__pycache__/
.coverage
.vscode/
.vscode/
coverage.lcov
2 changes: 1 addition & 1 deletion pose_evaluation/utils/pose_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def preprocess_pose(

# not used, typically.
if remove_world_landmarks:
pose_remove_world_landmarks(pose)
pose = pose_remove_world_landmarks(pose)

# hide low conf
if conf_threshold_to_drop_points is not None:
Expand Down

0 comments on commit 66361ca

Please sign in to comment.