Browse Source

Merge pull request #29 from NVlabs/gear-sonic

docs update
main
Zhengyi "Zen" Luo 1 month ago
committed by GitHub
parent
commit
c947d79b6a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/source/references/decoupled_wbc.md
  2. 5
      gear_sonic/scripts/pico_manager_thread_server.py

2
docs/source/references/decoupled_wbc.md

@ -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. 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.

5
gear_sonic/scripts/pico_manager_thread_server.py

@ -231,6 +231,11 @@ def _process_3pt_pose(smpl_pose_np):
orientations. 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 # STEP 1: Transform all joints from Unity frame to robot frame
# ========================================================================= # =========================================================================

Loading…
Cancel
Save