File size: 4,377 Bytes
d3dbf03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | # Preparing Multi-Moments in Time
## Introduction
<!-- [DATASET] -->
```BibTeX
@misc{monfort2019multimoments,
title={Multi-Moments in Time: Learning and Interpreting Models for Multi-Action Video Understanding},
author={Mathew Monfort and Kandan Ramakrishnan and Alex Andonian and Barry A McNamara and Alex Lascelles, Bowen Pan, Quanfu Fan, Dan Gutfreund, Rogerio Feris, Aude Oliva},
year={2019},
eprint={1911.00232},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
```
For basic dataset information, you can refer to the dataset [website](http://moments.csail.mit.edu).
Before we start, please make sure that the directory is located at `$MMACTION2/tools/data/mmit/`.
## Step 1. Prepare Annotations and Videos
First of all, you have to visit the official [website](http://moments.csail.mit.edu/), fill in an application form for downloading the dataset. Then you will get the download link. You can use `bash preprocess_data.sh` to prepare annotations and videos. However, the download command is missing in that script. Remember to download the dataset to the proper place follow the comment in this script.
For better decoding speed, you can resize the original videos into smaller sized, densely encoded version by:
```
python ../resize_videos.py ../../../data/mmit/videos/ ../../../data/mmit/videos_256p_dense_cache --dense --level 2
```
## Step 2. Extract RGB and Flow
This part is **optional** if you only want to use the video loader.
Before extracting, please refer to [install.md](/docs/en/get_started/installation.md) for installing [denseflow](https://github.com/open-mmlab/denseflow).
First, you can run the following script to soft link SSD.
```shell
# execute these two line (Assume the SSD is mounted at "/mnt/SSD/")
mkdir /mnt/SSD/mmit_extracted/
ln -s /mnt/SSD/mmit_extracted/ ../../../data/mmit/rawframes
```
If you only want to play with RGB frames (since extracting optical flow can be time-consuming), consider running the following script to extract **RGB-only** frames using denseflow.
```shell
bash extract_rgb_frames.sh
```
If you didn't install denseflow, you can still extract RGB frames using OpenCV by the following script, but it will keep the original size of the images.
```shell
bash extract_rgb_frames_opencv.sh
```
If both are required, run the following script to extract frames using "tvl1" algorithm.
```shell
bash extract_frames.sh
```
## Step 3. Generate File List
you can run the follow script to generate file list in the format of rawframes or videos.
```shell
bash generate_rawframes_filelist.sh
bash generate_videos_filelist.sh
```
## Step 4. Check Directory Structure
After the whole data process for Multi-Moments in Time preparation,
you will get the rawframes (RGB + Flow), videos and annotation files for Multi-Moments in Time.
In the context of the whole project (for Multi-Moments in Time only), the folder structure will look like:
```
mmaction2/
βββ data
βββ mmit
βββ annotations
βΒ Β βββ moments_categories.txt
βΒ Β βββ trainingSet.txt
βΒ Β βββ validationSet.txt
βββ mmit_train_rawframes.txt
βββ mmit_train_videos.txt
βββ mmit_val_rawframes.txt
βββ mmit_val_videos.txt
βββ rawframes
βΒ Β βββ 0-3-6-2-9-1-2-6-14603629126_5
βΒ Β βΒ Β βββ flow_x_00001.jpg
βΒ Β βΒ Β βββ flow_x_00002.jpg
βΒ Β βΒ Β βββ ...
βΒ Β βΒ Β βββ flow_y_00001.jpg
βΒ Β βΒ Β βββ flow_y_00002.jpg
βΒ Β βΒ Β βββ ...
βΒ Β βΒ Β βββ img_00001.jpg
βΒ Β βΒ Β βββ img_00002.jpg
βΒ Β βΒ Β βββ ...
βΒ Β βββ yt-zxQfALnTdfc_56
βΒ Β βΒ Β βββ ...
βΒ Β βββ ...
βββ videos
βββ adult+female+singing
βββ 0-3-6-2-9-1-2-6-14603629126_5.mp4
βββ yt-zxQfALnTdfc_56.mp4
βββ ...
```
For training and evaluating on Multi-Moments in Time, please refer to [Training and Test Tutorial](/docs/en/user_guides/train_test.md).
|