Spaces:
Runtime error
Runtime error
File size: 15,093 Bytes
7e976d8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
"""Post-processing utilities for motion generation output."""
from types import SimpleNamespace
from typing import Dict, List, Optional, Tuple
import numpy as np
import torch
from .constraints import (
EndEffectorConstraintSet,
FullBodyConstraintSet,
Root2DConstraintSet,
)
from .geometry import matrix_to_quaternion, quaternion_to_matrix
from .skeleton import (
G1Skeleton34,
SkeletonBase,
SMPLXSkeleton22,
SOMASkeleton30,
SOMASkeleton77,
fk,
)
def extract_input_motion_from_constraints(
constraint_lst: List,
skeleton: SkeletonBase,
num_frames: int,
num_joints: int,
) -> Tuple[torch.Tensor, torch.Tensor]:
"""Extract hip translations and local rotations from constraints for postprocessing.
Args:
constraint_lst: List of constraints (FullBodyConstraintSet, EndEffectorConstraintSet, etc.)
skeleton: Skeleton instance
num_frames: Total number of frames in the motion
num_joints: Number of joints
Returns:
Tuple of (hip_translations_input, rotations_input):
- hip_translations_input: Hip translations, shape (T, 3)
- rotations_input: Local joint rotations as quaternions, shape (T, J, 4)
"""
# Initialize with zeros for all frames
hip_translations_input = torch.zeros(num_frames, 3)
rotations_input = torch.zeros(num_frames, num_joints, 4)
rotations_input[..., 0] = 1.0 # Initialize as identity quaternions (w=1, x=y=z=0)
def _match_hip_dtype(tensor: torch.Tensor) -> torch.Tensor:
return tensor.to(device=hip_translations_input.device, dtype=hip_translations_input.dtype)
def _match_rot_dtype(tensor: torch.Tensor) -> torch.Tensor:
return tensor.to(device=rotations_input.device, dtype=rotations_input.dtype)
if not constraint_lst:
return hip_translations_input, rotations_input
# Sort constraints to ensure FullBodyConstraintSet is processed last
# This ensures it will get the last say on whether hip translations need to be exact root or smoothed root
sorted_constraints = sorted(constraint_lst, key=lambda c: isinstance(c, FullBodyConstraintSet))
for constraint in sorted_constraints:
frame_indices = constraint.frame_indices
if isinstance(frame_indices, torch.Tensor):
valid_mask = frame_indices < num_frames
if valid_mask.sum() == 0:
continue
frame_indices = frame_indices[valid_mask]
else:
valid_positions = [i for i, idx in enumerate(frame_indices) if idx < num_frames]
if not valid_positions:
continue
frame_indices = [frame_indices[i] for i in valid_positions]
# Handle Root2DConstraintSet separately - only assign smooth_root_2d at xz dimensions
if isinstance(constraint, Root2DConstraintSet):
smooth_root_2d = constraint.smooth_root_2d # (K, 2) where K = len(frame_indices)
if isinstance(frame_indices, torch.Tensor):
smooth_root_2d = smooth_root_2d[valid_mask]
else:
smooth_root_2d = smooth_root_2d[valid_positions]
smooth_root_2d = _match_hip_dtype(smooth_root_2d)
hip_translations_input[frame_indices, 0] = smooth_root_2d[:, 0] # x
hip_translations_input[frame_indices, 2] = smooth_root_2d[:, 1] # z
continue
elif isinstance(constraint, FullBodyConstraintSet) or isinstance(constraint, EndEffectorConstraintSet):
global_rots = constraint.global_joints_rots # (K, J, 3, 3) where K = len(frame_indices)
global_positions = constraint.global_joints_positions # (K, J, 3)
if isinstance(frame_indices, torch.Tensor):
global_rots = global_rots[valid_mask]
global_positions = global_positions[valid_mask]
smooth_root_2d = constraint.smooth_root_2d[valid_mask]
else:
global_rots = global_rots[valid_positions]
global_positions = global_positions[valid_positions]
smooth_root_2d = constraint.smooth_root_2d[valid_positions]
root_positions = global_positions[:, skeleton.root_idx] # (K, 3)
# replace xz with smooth_root_2d values for EE constraints that do not include Hips
# since the hips themselves are not actually constrained in the model conditioning
if isinstance(constraint, EndEffectorConstraintSet) and "Hips" not in constraint.joint_names:
root_positions[:, 0] = smooth_root_2d[:, 0] # x
root_positions[:, 2] = smooth_root_2d[:, 1] # z
local_rot_mats = skeleton.global_rots_to_local_rots(global_rots) # (K, J, 3, 3)
local_rot_quats = matrix_to_quaternion(local_rot_mats) # (K, J, 4)
hip_translations_input[frame_indices] = _match_hip_dtype(root_positions)
rotations_input[frame_indices] = _match_rot_dtype(local_rot_quats)
else:
NotImplementedError(f"Constraint {constraint.name} is not supported")
return hip_translations_input, rotations_input
def create_working_rig_from_skeleton(
skeleton: SkeletonBase, above_ground_offset: float = 0.007
) -> List[SimpleNamespace]:
"""Create the working rig as a list of SimpleNamespace objects from skeleton.
Args:
skeleton: SkeletonBase instance with bone_order_names, neutral_joints, joint_parents
above_ground_offset: Additional offset to position the rig slightly above ground
Returns:
List of SimpleNamespace objects representing the working rig
"""
working_rig_joints = []
joint_names = skeleton.bone_order_names
neutral_positions = skeleton.neutral_joints.cpu().numpy()
parent_indices = skeleton.joint_parents.cpu().numpy()
if isinstance(skeleton, (G1Skeleton34, SMPLXSkeleton22)):
retarget_map = {
skeleton.bone_order_names[skeleton.root_idx]: "Hips",
skeleton.left_hand_joint_names[0]: "LeftHand",
skeleton.right_hand_joint_names[0]: "RightHand",
skeleton.left_foot_joint_names[0]: "LeftFoot",
skeleton.right_foot_joint_names[0]: "RightFoot",
}
else:
# works for SOMA
retarget_map = {
"Hips": "Hips",
"Head": "Head",
"LeftHand": "LeftHand",
"RightHand": "RightHand",
"LeftFoot": "LeftFoot",
"RightFoot": "RightFoot",
}
for i, joint_name in enumerate(joint_names):
parent_name = None if parent_indices[i] == -1 else joint_names[parent_indices[i]]
# Calculate local translation relative to parent
if parent_indices[i] == -1:
# Move the rig so that the lowest point (toe) is at ground level (y=0),
# plus a small offset to position the rig slightly above ground
toe_height = neutral_positions[:, 1].min() # lowest y-coordinate (toe)
local_translation = (
neutral_positions[i] + np.array([0.0, -toe_height + above_ground_offset, 0.0])
).tolist()
else:
parent_idx = parent_indices[i]
parent_position = neutral_positions[parent_idx]
joint_position = neutral_positions[i]
local_translation = (joint_position - parent_position).tolist()
# Default rotation (identity quaternion: x=0, y=0, z=0, w=1)
default_rotation = [0.0, 0.0, 0.0, 1.0]
joint_info = SimpleNamespace(
name=joint_name,
parent=parent_name,
t_pose_rotation=default_rotation,
t_pose_translation=local_translation,
retarget_tag=retarget_map.get(joint_name),
)
working_rig_joints.append(joint_info)
return working_rig_joints
def post_process_motion(
local_rot_mats: torch.Tensor,
root_positions: torch.Tensor,
contacts: torch.Tensor,
skeleton: SkeletonBase,
constraint_lst: Optional[List] = None,
contact_threshold: float = 0.5,
root_margin: float = 0.04,
) -> Dict[str, torch.Tensor]:
"""Post-process generated motion to reduce foot skating and improve quality.
Args:
local_rot_mats: Local joint rotation matrices, shape (B, T, J, 3, 3)
root_positions: Root joint positions, shape (B, T, 3)
contacts: Foot contact labels, shape (B, T, num_contacts)
skeleton: Skeleton instance
constraint_lst: Optional list of constraints (or list of lists of constraints for batched inference)(FullBodyConstraintSet, etc.)
contact_threshold: Threshold for foot contact detection
root_margin: Margin for root position correction
Returns:
Dictionary with corrected motion data:
- local_rot_mats: Corrected local rotation matrices (B, T, J, 3, 3)
- root_positions: Corrected root positions (B, T, 3)
- posed_joints: Corrected global joint positions (B, T, J, 3)
- global_rot_mats: Corrected global rotation matrices (B, T, J, 3, 3)
"""
# Ensure batch dimension
assert local_rot_mats.dim() == 5, "local_rot_mats should be 5D, make sure to include the batch dimension"
batch_size, num_frames, num_joints = local_rot_mats.shape[:3]
def _build_constraint_masks_dict(constraints: List) -> Dict[str, torch.Tensor]:
out = {
key: torch.zeros(num_frames, dtype=torch.float32)
for key in [
"FullBody",
"LeftFoot",
"RightFoot",
"LeftHand",
"RightHand",
"Root",
]
}
for constraint in constraints:
frame_indices = constraint.frame_indices
if isinstance(frame_indices, torch.Tensor):
frame_indices = frame_indices[frame_indices < num_frames]
if frame_indices.numel() == 0:
continue
else:
frame_indices = [idx for idx in frame_indices if idx < num_frames]
if not frame_indices:
continue
if constraint.name == "fullbody":
out["FullBody"][frame_indices] = 1.0
elif constraint.name == "left-foot":
out["LeftFoot"][frame_indices] = 1.0
elif constraint.name == "right-foot":
out["RightFoot"][frame_indices] = 1.0
elif constraint.name == "left-hand":
out["LeftHand"][frame_indices] = 1.0
elif constraint.name == "right-hand":
out["RightHand"][frame_indices] = 1.0
elif constraint.name == "root2d":
out["Root"][frame_indices] = 1.0
return out
# Create constraint masks from constraint_lst (one dict per batch item when batched)
batched_constraints = bool(constraint_lst) and isinstance(constraint_lst[0], list)
if batched_constraints:
constraint_masks_dict_lst = [_build_constraint_masks_dict(constraint_lst[b]) for b in range(batch_size)]
else:
constraint_masks_dict = (
_build_constraint_masks_dict(constraint_lst)
if constraint_lst
else {
key: torch.zeros(num_frames, dtype=torch.float32)
for key in [
"FullBody",
"LeftFoot",
"RightFoot",
"LeftHand",
"RightHand",
"Root",
]
}
)
# Create working rig
above_ground_offset = 0.02 if isinstance(skeleton, (SOMASkeleton30, SOMASkeleton77)) else 0.007
# larger offset for SOMA since model tends to generate lower to the ground
working_rig = create_working_rig_from_skeleton(skeleton, above_ground_offset=above_ground_offset)
has_double_ankle_joints = isinstance(skeleton, G1Skeleton34)
# Prepare input tensors. The generated motion will be modified in place. Clone first.
neutral_joints_pelvis_offset = skeleton.neutral_joints[0].cpu().clone()
hip_translations_corrected = root_positions.cpu().clone()
rotations_corrected = matrix_to_quaternion(local_rot_mats).cpu().clone() # (B, T, J, 4)
contacts = contacts.cpu()
# Extract input motion (target keyframes) from constraints for each batch
# For constrained keyframes, use the original motion from constraints
# For non-constrained frames, zeros are used
hip_translations_input = torch.zeros(batch_size, num_frames, 3)
rotations_input = torch.zeros(batch_size, num_frames, num_joints, 4)
rotations_input[..., 0] = 1.0 # Initialize as identity quaternions (w=1, x=y=z=0)
if constraint_lst:
for b in range(batch_size):
# Get constraints for this batch item (if batched) or use the same list
constraints_lst_el = (
constraint_lst[b]
if isinstance(
constraint_lst[0], list
) # when the constraint_list is in batch format, each item in a list is a constraintlist for one sample
else constraint_lst # single constraint list shared for all samples in the batch
)
hip_translations_input[b], rotations_input[b] = extract_input_motion_from_constraints(
constraints_lst_el,
skeleton,
num_frames,
num_joints,
)
# Call the motion correction for each batch (optional package)
try:
from motion_correction import motion_postprocess
except ImportError as e:
raise RuntimeError(
"Motion correction is required for this postprocessing path but the "
"motion_correction package is not installed. Install with: pip install -e ."
) from e
for b in range(batch_size):
masks_b = constraint_masks_dict_lst[b] if batched_constraints else constraint_masks_dict
motion_postprocess.correct_motion(
hip_translations_corrected[b : b + 1],
rotations_corrected[b : b + 1],
contacts[b : b + 1],
hip_translations_input[b : b + 1],
rotations_input[b : b + 1],
masks_b,
contact_threshold,
root_margin,
working_rig,
has_double_ankle_joints,
)
local_rot_mats_corrected = quaternion_to_matrix(rotations_corrected)
# Compute posed joints using FK
device = local_rot_mats.device
global_rot_mats, posed_joints, _ = fk(
local_rot_mats_corrected.to(device),
hip_translations_corrected.to(device),
skeleton,
)
result = {
"local_rot_mats": local_rot_mats_corrected.to(device),
"root_positions": hip_translations_corrected.to(device),
"posed_joints": posed_joints,
"global_rot_mats": global_rot_mats,
}
return result
|