1 Star 0 Fork 0

萌萌哒/PCV

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
get-data-files.sh 567 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
URL="http://programmingcomputervision.com/downloads/pcv_data.zip"
if /usr/bin/env wget $URL
then
mkdir data-unpack.tmp
cd data-unpack.tmp
unzip -q ../pcv_data.zip
rm -rf __MACOSX
cd ..
if [ -d data/ ]
then
echo Directory 'pcv-data' already exists.
echo Look in the data-unpack.tmp directory for the unzipped data.
else
mv data-unpack.tmp/data .
rmdir data-unpack.tmp
fi
rm pcv_data.zip
else
echo Could not get data archive. Check URL and make sure you have wget.
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/OneKing666/PCV.git
git@gitee.com:OneKing666/PCV.git
OneKing666
PCV
PCV
master

搜索帮助