epic-kitchens / C2-Action-Detection

Evaluation measures for the EPIC-KITCHENS-100 Action Detection challenge
15 stars 3 forks source link

Error in the number of frames #8

Closed ziqingcheryl closed 1 year ago

ziqingcheryl commented 1 year ago

According to https://github.com/epic-kitchens/epic-kitchens-100-annotations/blob/master/EPIC_100_video_info.csv. Experiment P08_19 should have a video 276.811111 seconds at fps 90, which corresponds to 276.811111*90 = 24913 frames. But in the rgb files downloaded from https://data.bris.ac.uk/datasets/3h91syskeag572hl6tvuovwv4d/frames_rgb_flow/rgb/test/P18/P18_09.tar, the number of frames is 16622. Could you please specify which is correct? Same problems also exist with the following IDs: 'P06_107', 'P06_12', 'P28_01', 'P06_110'.

dimadamen commented 1 year ago

All videos were unified to the same frame rate before extracting frames, so frames were not extracted at 90fps even though this is the original fps of the video recording. This applies to all videos of high frame rate. You can read the details of how all videos were re-encoded to 50 of 60fps. Videos P08_19, P06_12, P28_01 were re-extracted to 60fps as this is the fps of all videos captured in epic-kitchens-55. The other two P06_107 and P06_110 were re-encoded to 50fps which is for all videos captured in epic-kitchens-100.

dimadamen commented 1 year ago

The docker can be seen here: -r 50 showcases the encoding

Screenshot 2023-05-24 at 15 03 24
ziqingcheryl commented 1 year ago

Thanks for specifying!