dataset_README.md - Information about the dataset dataset_LICENSE - Information about the dataset LICENSE
- Extracting joint names from URDF files
# Default behavior with built-in URDFs
python extract_joint_names.py
# Custom URDF with verbose output
python extract_joint_names.py -u path/to/urdf/file.urdf -v
# Multiple URDFs without joint limits
python extract_joint_names.py -u robot1.urdf robot2.urdf --no-limits
- Retargeting motion files.
python retarget_motion.py \
--config joint_mappings/g1_stompypro.yaml \
--source-urdf robot_description/g1/g1_29dof_rev_1_0.urdf \
--target-urdf robot_description/stompypro/robot_test.urdf \
--output-dir retargeted_motions \
"motion_files/*.csv"
- Visualizing retargeted motion files.
# Basic usage
python rerun_visualize.py -m motions/dance1.csv -r g1
# Custom visualization settings
python rerun_visualize.py \
--motion-file motions/dance1.csv \
--robot-type stompypro \
--frame-delay 0.05 \
--window-title "Stompy Dance" \
--coordinate-frame LEFT_HAND_Z_UP