Skip to content

Instantly share code, notes, and snippets.

@simonjisu
Last active February 29, 2024 12:11
Show Gist options
  • Save simonjisu/d54a860aa392e889b2fca86d97c12262 to your computer and use it in GitHub Desktop.
Save simonjisu/d54a860aa392e889b2fca86d97c12262 to your computer and use it in GitHub Desktop.
# 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 ..
@j-dcx
Copy link

j-dcx commented Sep 12, 2023

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.

@simonjisu
Copy link
Author

sorry I’ve already delete them :(

@lrostagno
Copy link

sorry I’ve already delete them :(

Why? can you please restore them?

@toriningen
Copy link

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