Skip to content

Instantly share code, notes, and snippets.

View seenitall's full-sized avatar

Blanca Alonso seenitall

View GitHub Profile
@jvlmdr
jvlmdr / download.sh
Created May 3, 2017 10:06
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/{}"