kittenish / Frame-Transformer-Network

Released code and data for "Frame-Transformer Emotion Classification Network." ICMR 2017
17 stars 0 forks source link

How can I get the Ek6 dataset named by the serial number #1

Open zhuzhu804 opened 1 year ago

zhuzhu804 commented 1 year ago

Hello,I wonder how can I get the Ek6 dataset ,which videos are named by the serial number, thanks!

JinChow commented 1 year ago

@zhuzhu804 Hello, I just got some .mat file of ekman6 dataset. Have you found the Ekman6 video data?

serkansulun commented 2 months ago
import h5py
path = 'Emotion6 video dataset/multi_train_data.mat'
with h5py.File(path, 'r') as file:
    data = file['train_data'][:]

Resulting array has a shape of (4096, 30, 2400). It looks like processed features, not videos.