Skip to content
Snippets Groups Projects
Commit bbca8365 authored by Stephan Hilb's avatar Stephan Hilb
Browse files

add middlebury download script

parent b7205a4e
Branches
Tags
No related merge requests found
#/bin/sh -e
if [ $# -eq 0 ]; then
echo -e "usage: $0 <target-path>"
exit 0;
fi
path=$1
(
cd $1
curl -O "https://vision.middlebury.edu/flow/data/comp/zip/other-gray-twoframes.zip"
curl -O "https://vision.middlebury.edu/flow/data/comp/zip/other-gt-flow.zip"
unzip "other-gray-twoframes.zip"
unzip "other-gt-flow.zip"
cp -r "other-data-gray"/* ./
cp -r "other-gt-flow"/* ./
rm -rf "other-data-gray" "other-gray-twoframes.zip"
rm -rf "other-gt-flow" "other-gt-flow.zip"
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment