Skip to content

Instantly share code, notes, and snippets.

@jvlmdr
Created May 3, 2017 10:06
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jvlmdr/00968b1cf9d1a0e57b8ed93fe158f224 to your computer and use it in GitHub Desktop.
Save jvlmdr/00968b1cf9d1a0e57b8ed93fe158f224 to your computer and use it in GitHub Desktop.
Downloads OTB dataset
#!/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/{}"
@kalyan0510
Copy link

useful!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment