akanazawa / hmr

Project page for End-to-end Recovery of Human Shape and Pose
Other
1.54k stars 395 forks source link

About the the Penn Action Dataset #73

Closed ChenyuGao closed 5 years ago

ChenyuGao commented 5 years ago

Hello, I read your new paper "Learning 3D Human Dynamics from Video", but I don't know where to download the Penn Action Dataset. I forces on the sports datset. By the way, when your code will be released? Thanks for your work!

A7ocin commented 5 years ago

Hi, you can download the Penn Action Dataset from the official website.

Nicola

ChenyuGao commented 5 years ago

Hi, you can download the Penn Action Dataset from the official website.

Nicola

Thank you very much!

SkyeLu commented 5 years ago

Hi, do you know how to read the mat file in PennAction Dataset? I'v tried using scipy.io.loadmat and h5py.File, both methods failed. Thanks. @ChenyuGao @A7ocin

ChenyuGao commented 5 years ago

I just use it as follow in python3:

import scipy.io as scio sample_label_file = os.path.join(label_dir, '0001.mat') sample_label_data = scio.loadmat(sample_label_file)

"sample_label_data" is a dict

A7ocin commented 5 years ago

I think you should take a look at Kanazawa's new repository, called "human_dynamics" 😉

SkyeLu commented 5 years ago

Thank you guys! I just found that my mat files get corrupted while decompressing from the .tar.gz file. Thank you again! @ChenyuGao @A7ocin