Created
May 3, 2017 10:06
-
-
Save jvlmdr/00968b1cf9d1a0e57b8ed93fe158f224 to your computer and use it in GitHub Desktop.
Downloads OTB dataset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
baseurl="http://cvlab.hanyang.ac.kr/tracker_benchmark" | |
wget "$baseurl/datasets.html" | |
cat datasets.html | grep '\.zip' | sed -e 's/\.zip".*/.zip/' | sed -e s'/.*"//' >files.txt | |
cat files.txt | xargs -n 1 -P 8 -I {} wget -c "$baseurl/{}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
useful!!