Frame-Transformer-Network icon indicating copy to clipboard operation
Frame-Transformer-Network copied to clipboard

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

Open zhuzhu804 opened this issue 2 years ago • 2 comments

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

zhuzhu804 avatar Aug 08 '23 13:08 zhuzhu804

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

JinChow avatar Sep 27 '23 10:09 JinChow

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.

serkansulun avatar Jul 16 '24 08:07 serkansulun