Spaces:
Sleeping
Sleeping
File size: 660 Bytes
fc3ca1b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from .skeleton import (
BONE_NAMES, BONE_PARENT, BONE_CHILDREN, BONE_IDX, N_BONES,
T_POSE_WORLD, T_POSE_LOCAL,
H36M_TO_BONE,
coco_to_h36m_2d,
h36m_to_bone_positions,
compute_local_positions,
)
from .postprocess import (
smooth_poses,
resample_poses,
centre_trajectory,
apply_floor,
full_postprocess,
)
__all__ = [
"BONE_NAMES", "BONE_PARENT", "BONE_CHILDREN", "BONE_IDX", "N_BONES",
"T_POSE_WORLD", "T_POSE_LOCAL", "H36M_TO_BONE",
"coco_to_h36m_2d", "h36m_to_bone_positions", "compute_local_positions",
"smooth_poses", "resample_poses", "centre_trajectory",
"apply_floor", "full_postprocess",
]
|