import numpy as np
import pandas as pd
import motion_capture
import plotly.offline as py
dataframe = pd.read_csv("/dataset/chenk/release/23.csv", index_col=0)
dataframe.describe()
data = np.load("/dataset/chenk/release/23.npz")
index = 20
py.init_notebook_mode()
fig = motion_capture.get_figure3d(data["shapes"][index], data["groundtruth"][index])
py.iplot(fig)