You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i draw 3d prediction image refer ur render_animation() function, like this
def render3d(pose):
fig = plt.figure()
ax_in = fig.add_subplot(111, projection='3d')
ax_in.view_init(elev=15., azim=70)
ax_in.get_xaxis().set_visible(False)
ax_in.get_yaxis().set_visible(False)
ax_in.set_axis_off()
ax_3d = []
lines_3d = []
ax_3d.append(ax_in)
lines_3d.append([])
parents=[-1, 0, 1, 2, 0, 4, 5, 0, 7, 8, 9, 8, 11, 12, 8, 14, 15]
index = [i for i in np.arange(17)]
for j, j_parent in zip(index, parents):
if j_parent == -1:
continue
for n, ax in enumerate(ax_3d):
hi, thank for ur brilliant repo!
when i draw 3d prediction image refer ur render_animation() function, like this
def render3d(pose):
fig = plt.figure()
ax_in = fig.add_subplot(111, projection='3d')
ax_in.view_init(elev=15., azim=70)
ax_in.get_xaxis().set_visible(False)
ax_in.get_yaxis().set_visible(False)
ax_in.set_axis_off()
ax_3d = []
lines_3d = []
ax_3d.append(ax_in)
lines_3d.append([])
parents=[-1, 0, 1, 2, 0, 4, 5, 0, 7, 8, 9, 8, 11, 12, 8, 14, 15]
index = [i for i in np.arange(17)]
for j, j_parent in zip(index, parents):
if j_parent == -1:
continue
for n, ax in enumerate(ax_3d):
but the result is not like ur visualization results.
why i do not do normalize_screen_coordinates function, the prediction is not well, like above picture?
The text was updated successfully, but these errors were encountered: