File size: 545 Bytes
d4b77ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Preprocessing VID(Object detection from video)
Large Scale Visual Recognition Challenge 2015 (ILSVRC2015)

### Download dataset (86GB)

````shell
wget http://bvisionweb1.cs.unc.edu/ilsvrc2015/ILSVRC2015_VID.tar.gz
tar -xzvf ./ILSVRC2015_VID.tar.gz
mv ILSVRC2015/Annotations/VID/val ILSVRC2015/Annotations/VID/train/
mv ILSVRC2015/Data/VID/val ILSVRC2015/Data/VID/train/
````

### Crop & Generate data info (20 min)

````shell
python parse_vid.py

#python par_crop.py [crop_size] [num_threads]
python par_crop.py 511 12
python gen_json.py
````