File size: 979 Bytes
d590472
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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



### scripts for processing the datasets

structure for vidor dataset
```
vidor
├── train
│   └── video
│       ├── 0000
│       ├── 0001
│       ├── 0002
├── train_annotation
│   └── training
│       ├── 0000
│       ├── 0001
│       ├── 0002
│       ├── 0003
├── validation
│   └── video
│       ├── 0001
│       ├── 0004
│       ├── 0005
├── validation_annotation
│   └── validation
│       ├── 0001
│       ├── 0004
```

structure for vitstg

```
VidSTG-Dataset
├── annotations
│   ├── read_annotation.py
│   ├── test_annotations.json
│   ├── test_files.json
│   ├── train_annotations.json
│   ├── train_files.json
│   ├── val_annotations.json
│   └── val_files.json
├── example.jpg
└── README.md

```