Zhengyi "Zen" Luo
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
6 additions and
1 deletions
docs/source/references/decoupled_wbc.md
gear_sonic/scripts/pico_manager_thread_server.py
@ -1,4 +1,4 @@
# Decoupled WBC (N1.5 / N1.6)
# Decoupled WBC
Software stack for loco-manipulation experiments across multiple humanoid platforms, with primary support for the Unitree G1. This repository provides whole-body control policies, a teleoperation stack, and a data exporter.
@ -231,6 +231,11 @@ def _process_3pt_pose(smpl_pose_np):
orientations .
"""
# Defensive copy: _compute_rel_transform modifies pose[:3] in-place, which would
# corrupt the caller's array (e.g. PicoReader._latest) and cause wrong results
# if the same sample is processed more than once.
smpl_pose_np = smpl_pose_np . copy ( )
# =========================================================================
# STEP 1: Transform all joints from Unity frame to robot frame
# =========================================================================