Last active
February 29, 2024 12:11
-
-
Save simonjisu/d54a860aa392e889b2fca86d97c12262 to your computer and use it in GitHub Desktop.
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
# References: | |
# ============== | |
# WebLogo-2M Dataset | |
# http://www.eecs.qmul.ac.uk/~hs308/WebLogo-2M.html/ | |
# Hang Su, Xiatian Zhu, Shaogang Gong. | |
# Deep Learning Logo Detection with Data Expansion by Synthesising Context | |
# IEEE Winter Conference on Applications of Computer Science (WACV), Santa Rosa, USA, March 2017. | |
# | |
# Hang Su, Shaogang Gong, Xiatian Zhu. | |
# WebLogo-2M: Scalable Logo Detection by Deep Learning from the Web | |
# IEEE International Conference on Computer Vision, Workshop on Web-scale Vision and Social Media, | |
# Venice, Italy, October 2017. | |
# ------------------------------------------------------------------------------------ | |
# LogoDet-3K: A Large-Scale Image Dataset for Logo Detection | |
# Jing Wang, Weiqing Min, Sujuan Hou, Shengnan Ma, Yuanjie Zheng, Shuqiang Jiang | |
# https://arxiv.org/abs/2008.05359 | |
mkdir weblogo2m | |
cd weblogo2m | |
mkdir train | |
cd train | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_1.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_2.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_3.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_4.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_5.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_6.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_7.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/part_8.tar.gz | |
tar -zxvf part_1.tar.gz | |
tar -zxvf part_2.tar.gz | |
tar -zxvf part_3.tar.gz | |
tar -zxvf part_4.tar.gz | |
tar -zxvf part_5.tar.gz | |
tar -zxvf part_6.tar.gz | |
tar -zxvf part_7.tar.gz | |
tar -zxvf part_8.tar.gz | |
rm *.tar.gz | |
rm *.zip | |
cd .. | |
mkdir test | |
cd test | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/Evaluation_dataset.tar.gz | |
wget http://vision.eecs.qmul.ac.uk/datasets/WebLogo-2M/194_logo_icons.zip | |
tar -zxvf Evaluation_dataset.tar.gz | |
rm *.tar.gz | |
cd .. | |
cd .. | |
mkdir logodet3k | |
cd logodet3k | |
wget 123.57.42.89/Dataset_ict/LogoDet-3K.zip | |
unzip LogoDet-3K.zip | |
rm *.zip | |
cd .. | |
sorry I’ve already delete them :(
sorry I’ve already delete them :(
Why? can you please restore them?
Has anyone managed to retrieve the dataset?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, do you happen to have the tar.gz files from WebLogo-2M Dataset https://weblogo2m.github.io/ ? The links on their website are obsolete.