You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Finch02567
7ea57dcc86
|
5 months ago | |
---|---|---|
.. | ||
README.md | 5 months ago | |
load_videos.py | 5 months ago | |
taichi-metadata.csv | 5 months ago |
README.md
TaiChi dataset
The scripst for loading the TaiChi dataset.
We provide only the id of the corresponding video and the bounding box. Following script will download videos from youtube and crop them according to the provided bounding boxes.
- Load youtube-dl:
wget https://yt-dl.org/downloads/latest/youtube-dl -O youtube-dl
chmod a+rx youtube-dl
- Run script to download videos, there are 2 formats that can be used for storing videos one is .mp4 and another is folder with .png images. While .png images occupy significantly more space, the format is loss-less and have better i/o performance when training.
python load_videos.py --metadata taichi-metadata.csv --format .mp4 --out_folder taichi --workers 8
select number of workers based on number of cpu avaliable. Note .png format take aproximatly 80GB.