Spaces:
Sleeping
Sleeping
File size: 4,183 Bytes
4409449 |
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 |
from typing import Dict, List
import numpy as np
import torch
from torch import Tensor
import mGPT.utils.geometry_conver as geometry_conver
def lengths_to_mask(lengths: List[int],
device: torch.device,
max_len: int = None) -> Tensor:
lengths = torch.tensor(lengths, device=device)
max_len = max_len if max_len else max(lengths)
mask = torch.arange(max_len, device=device).expand(
len(lengths), max_len) < lengths.unsqueeze(1)
return mask
def detach_to_numpy(tensor):
return tensor.detach().cpu().numpy()
def remove_padding(tensors, lengths):
return [
tensor[:tensor_length]
for tensor, tensor_length in zip(tensors, lengths)
]
def nfeats_of(rottype):
if rottype in ["rotvec", "axisangle"]:
return 3
elif rottype in ["rotquat", "quaternion"]:
return 4
elif rottype in ["rot6d", "6drot", "rotation6d"]:
return 6
elif rottype in ["rotmat"]:
return 9
else:
return TypeError("This rotation type doesn't have features.")
def axis_angle_to(newtype, rotations):
if newtype in ["matrix"]:
rotations = geometry_conver.axis_angle_to_matrix(rotations)
return rotations
elif newtype in ["rotmat"]:
rotations = geometry_conver.axis_angle_to_matrix(rotations)
rotations = matrix_to("rotmat", rotations)
return rotations
elif newtype in ["rot6d", "6drot", "rotation6d"]:
rotations = geometry_conver.axis_angle_to_matrix(rotations)
rotations = matrix_to("rot6d", rotations)
return rotations
elif newtype in ["rotquat", "quaternion"]:
rotations = geometry_conver.axis_angle_to_quaternion(rotations)
return rotations
elif newtype in ["rotvec", "axisangle"]:
return rotations
else:
raise NotImplementedError
def matrix_to(newtype, rotations):
if newtype in ["matrix"]:
return rotations
if newtype in ["rotmat"]:
rotations = rotations.reshape((*rotations.shape[:-2], 9))
return rotations
elif newtype in ["rot6d", "6drot", "rotation6d"]:
rotations = geometry_conver.matrix_to_rotation_6d(rotations)
return rotations
elif newtype in ["rotquat", "quaternion"]:
rotations = geometry_conver.matrix_to_quaternion(rotations)
return rotations
elif newtype in ["rotvec", "axisangle"]:
rotations = geometry_conver.matrix_to_axis_angle(rotations)
return rotations
else:
raise NotImplementedError
def to_matrix(oldtype, rotations):
if oldtype in ["matrix"]:
return rotations
if oldtype in ["rotmat"]:
rotations = rotations.reshape((*rotations.shape[:-2], 3, 3))
return rotations
elif oldtype in ["rot6d", "6drot", "rotation6d"]:
rotations = geometry_conver.rotation_6d_to_matrix(rotations)
return rotations
elif oldtype in ["rotquat", "quaternion"]:
rotations = geometry_conver.quaternion_to_matrix(rotations)
return rotations
elif oldtype in ["rotvec", "axisangle"]:
rotations = geometry_conver.axis_angle_to_matrix(rotations)
return rotations
else:
raise NotImplementedError
# TODO: use a real subsampler..
def subsample(num_frames, last_framerate, new_framerate):
step = int(last_framerate / new_framerate)
assert step >= 1
frames = np.arange(0, num_frames, step)
return frames
# TODO: use a real upsampler..
def upsample(motion, last_framerate, new_framerate):
step = int(new_framerate / last_framerate)
assert step >= 1
# Alpha blending => interpolation
alpha = np.linspace(0, 1, step + 1)
last = np.einsum("l,...->l...", 1 - alpha, motion[:-1])
new = np.einsum("l,...->l...", alpha, motion[1:])
chuncks = (last + new)[:-1]
output = np.concatenate(chuncks.swapaxes(1, 0))
# Don't forget the last one
output = np.concatenate((output, motion[[-1]]))
return output
if __name__ == "__main__":
motion = np.arange(105)
submotion = motion[subsample(len(motion), 100.0, 12.5)]
newmotion = upsample(submotion, 12.5, 100)
print(newmotion)
|