File size: 319 Bytes
3147214 |
1 2 3 4 5 6 7 8 9 |
import json, ipdb
f = open('/data7tb/gzy/PoseLLM/Data/EgoBody_json/egobody1.json', 'r')
data_ego = json.load(f)
f = open('/data7tb/gzy/PoseLLM/Data/EHF/EHF.json', 'r')
data_ehf = json.load(f)
f = open('/data7tb/gzy/PoseLLM/Data/MPI-INF-3DHP_json/text/MPI-INF-3DHP-0.json', 'r')
data_mpi = json.load(f)
ipdb.set_trace()
|