forked from sigal-raab/MoDi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBVH.py
327 lines (259 loc) · 10.7 KB
/
BVH.py
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
##############################
#
# based on http://theorangeduck.com/page/deep-learning-framework-character-motion-synthesis-and-editing
#
##############################
import re
import numpy as np
try:
from .Animation import Animation
from . import AnimationStructure
from .Quaternions import Quaternions
except:
from Animation import Animation
import AnimationStructure
from Quaternions import Quaternions
channelmap = {
'Xrotation' : 'x',
'Yrotation' : 'y',
'Zrotation' : 'z'
}
channelmap_inv = {
'x': 'Xrotation',
'y': 'Yrotation',
'z': 'Zrotation',
}
ordermap = {
'x' : 0,
'y' : 1,
'z' : 2,
}
def load(filename, start=None, end=None, order=None, world=True):
"""
Reads a BVH file and constructs an animation
Parameters
----------
filename: str
File to be opened
start : int
Optional Starting Frame
end : int
Optional Ending Frame
order : str
Optional Specifier for joint order.
Given as string E.G 'xyz', 'zxy'
world : bool
If set to true euler angles are applied
together in world space rather than local
space
Returns
-------
(animation, joint_names, frametime)
Tuple of loaded animation and joint names
"""
f = open(filename, "r")
i = 0
active = -1
end_site = False
end_site_is_joint = False
names = []
orients = Quaternions.id(0)
offsets = np.array([]).reshape((0,3))
parents = np.array([], dtype=int)
end_site_joints = np.array([], dtype=int)
for line in f:
if "HIERARCHY" in line: continue
if "MOTION" in line: continue
rmatch = re.match(r"\s*ROOT\s+(\S+)", line)
if rmatch:
names.append(rmatch.group(1))
offsets = np.append(offsets, np.array([[0,0,0]]), axis=0)
orients.qs = np.append(orients.qs, np.array([[1,0,0,0]]), axis=0)
parents = np.append(parents, active)
active = (len(parents)-1)
continue
if "{" in line: continue
if "}" in line:
# if end_site: end_site = False
# else: active = parents[active]
if not end_site or end_site_is_joint:
active = parents[active]
if end_site:
end_site = False
end_site_is_joint = False
continue
offmatch = re.match(r"\s*OFFSET\s+([\-\d\.e]+)\s+([\-\d\.e]+)\s+([\-\d\.e]+)", line)
if offmatch:
offsets[active] = np.array([list(map(float, offmatch.groups()))])
if end_site and all(offsets[active]==0):
# an end site of offset zero is not considered a joint
names = names[:-1]
offsets = offsets[:-1]
orients.qs = orients.qs[:-1]
active = parents[active]
parents = parents[:-1]
end_site_joints = end_site_joints[:-1]
end_site_is_joint = False
continue
chanmatch = re.match(r"\s*CHANNELS\s+(\d+)", line)
if chanmatch:
channels = int(chanmatch.group(1))
if order is None:
channelis = 0 if channels == 3 else 3
channelie = 3 if channels == 3 else 6
parts = line.split()[2+channelis:2+channelie]
if any([p not in channelmap for p in parts]):
continue
print_order = "".join([channelmap[p] for p in parts])
order = print_order[::-1] # in a bvh file, first rotation axis is printed last
continue
jmatch = re.match("\s*JOINT\s+(\S+)", line) # match <white-spaces>Joint<white-spaces><non-white-spaces>, .e.g: Joint mixamorig:LeftArm
if jmatch:
names.append(jmatch.group(1))
offsets = np.append(offsets, np.array([[0,0,0]]), axis=0)
orients.qs = np.append(orients.qs, np.array([[1,0,0,0]]), axis=0)
parents = np.append(parents, active)
active = (len(parents)-1)
continue
if "End Site" in line:
end_site = True
offsets = np.append(offsets, np.array([[0, 0, 0]]), axis=0)
orients.qs = np.append(orients.qs, np.array([[1, 0, 0, 0]]), axis=0)
parents = np.append(parents, active)
active = (len(parents) - 1)
end_site_joints = np.append(end_site_joints, active)
end_site_is_joint = True
end_site_match = re.match(".*#\s*name\s*:\s*(\w+).*", line)
if end_site_match:
names.append(end_site_match.group(1))
else:
names.append('{}_end_site'.format(names[parents[active]]))
continue
fmatch = re.match("\s*Frames:\s+(\d+)", line)
if fmatch:
if start and end:
fnum = (end - start)-1
else:
fnum = int(fmatch.group(1))
jnum = len(parents)
positions = offsets[np.newaxis].repeat(fnum, axis=0)
rotations = np.zeros((fnum, len(orients), 3))
continue
fmatch = re.match("\s*Frame Time:\s+([\d\.]+)", line)
if fmatch:
frametime = float(fmatch.group(1))
continue
if (start and end) and (i < start or i >= end-1):
i += 1
continue
dmatch = line.strip().split(' ')
if dmatch:
data_block = np.array(list(map(float, dmatch)))
N = len(parents) - len(end_site_joints)
non_end_site_joints = list( set(range(len(parents)))-set(end_site_joints) )
fi = i - start if start else i
if channels == 3:
positions[fi,0:1] = data_block[0:3]
rotations[fi, non_end_site_joints ] = data_block[3: ].reshape(N,3)
elif channels == 6:
data_block = data_block.reshape(N,6)
positions[fi,non_end_site_joints] = data_block[:,0:3]
rotations[fi,non_end_site_joints] = data_block[:,3:6]
elif channels == 9:
assert False, 'need to change code to handle end_site_joints'
positions[fi,0] = data_block[0:3]
data_block = data_block[3:].reshape(N-1,9)
rotations[fi,1:] = data_block[:,3:6]
positions[fi,1:] += data_block[:,0:3] * data_block[:,6:9]
else:
raise Exception("Too many channels! %i" % channels)
i += 1
f.close()
rotations = rotations[..., ::-1]
quat_rotations = Quaternions.from_euler(np.radians(rotations), order=order, world=world)
return (Animation(quat_rotations, positions, orients, offsets, parents), names, frametime)
def save(filename, anim, names=None, frametime=1.0/24.0, order='xyz', positions=False, orients=True):
"""
Saves an Animation to file as BVH
Parameters
----------
filename: str
File to be saved to
anim : Animation
Animation to save
names : [str]
List of joint names
order : str
Optional Specifier for joint rotation order, from left to right (not print order!).
Given as string E.G 'xyz', 'zxy'
frametime : float
Optional Animation Frame time
positions : bool
Optional specfier to save bone
positions for each frame
orients : bool
Multiply joint orients to the rotations
before saving.
"""
print_order = order[::-1] # in a bvh file, rotations are printed from last to first
if names is None:
names = ["joint_" + str(i) for i in range(len(anim.parents))]
# anim, names = anim.sort(names)
children = AnimationStructure.children_list(anim.parents)
if anim.shape[1] > 1: # end sites exist only if there is more than a root vertex
end_sites = [i for i,c in enumerate(children) if len(c)==0]
else:
end_sites = []
with open(filename, 'w') as f:
t = ""
f.write("%sHIERARCHY\n" % t)
f.write("%sROOT %s\n" % (t, names[0]))
f.write("%s{\n" % t)
t += '\t'
f.write("%sOFFSET %f %f %f\n" % (t, anim.offsets[0,0], anim.offsets[0,1], anim.offsets[0,2]) )
f.write("%sCHANNELS 6 Xposition Yposition Zposition %s %s %s \n" %
(t, channelmap_inv[print_order[0]], channelmap_inv[print_order[1]], channelmap_inv[print_order[2]]))
for child in children[0]:
t = save_joint(f, anim, names, t, child, print_order=print_order, children=children, positions=positions)
t = t[:-1]
f.write("%s}\n" % t)
f.write("MOTION\n")
f.write("Frames: %i\n" % anim.shape[0]);
f.write("Frame Time: %f\n" % frametime);
rots = np.degrees(anim.rotations.euler(order=order))
poss = anim.positions
for i in range(anim.shape[0]):
for j in range(anim.shape[1]):
if j not in end_sites:
if positions or j == 0:
f.write("%f %f %f %f %f %f " % (
poss[i,j,0], poss[i,j,1], poss[i,j,2],
rots[i,j,ordermap[print_order[0]]], rots[i,j,ordermap[print_order[1]]], rots[i,j,ordermap[print_order[2]]]))
else:
f.write("%f %f %f " % (
rots[i,j,ordermap[print_order[0]]], rots[i,j,ordermap[print_order[1]]], rots[i,j,ordermap[print_order[2]]]))
f.write("\n")
def save_joint(f, anim, names, t, i, print_order, children, positions=False):
end_site = False
if len(children[i]) == 0: #anim.parents[i+1] != i:
end_site = True
if not end_site:
f.write("%sJOINT %s\n" % (t, names[i]))
else:
# f.write("%sEnd Site\n" % t)
f.write("%sEnd Site #name: %s\n" % (t, names[i]))
f.write("%s{\n" % t)
t += '\t'
f.write("%sOFFSET %f %f %f\n" % (t, anim.offsets[i,0], anim.offsets[i,1], anim.offsets[i,2]))
if not end_site:
if positions:
f.write("%sCHANNELS 6 Xposition Yposition Zposition %s %s %s \n" % (t,
channelmap_inv[print_order[0]], channelmap_inv[print_order[1]], channelmap_inv[print_order[2]]))
else:
f.write("%sCHANNELS 3 %s %s %s\n" % (t,
channelmap_inv[print_order[0]], channelmap_inv[print_order[1]], channelmap_inv[print_order[2]]))
for j in children[i]:
t = save_joint(f, anim, names, t, j, print_order=print_order, children=children, positions=positions)
t = t[:-1]
f.write("%s}\n" % t)
return t