Samples
Overview
BelgaLogos数据集用于检测logo,包含37种不同的logo,共10000张图片。logo种类分别是
['Adidas', 'Adidas-text', 'Airness', 'Base', 'BFGoodrich', 'Bik', 'Bouigues', 'Bridgestone', 'Bridgestone-text', 'Carglass', 'Citroen', 'Citroen-text', 'CocaCola', 'Cofidis', 'Dexia', 'ELeclerc', 'Ferrari', 'Gucci', 'Kia', 'Mercedes', 'Nike', 'Peugeot', 'Puma', 'Puma-text', 'Quick', 'Reebok', 'Roche', 'Shell', 'SNCF', 'Standard_Liege', 'StellaArtois', 'TNT', 'Total', 'Umbro', 'US_President', 'Veolia', 'VRT']
Data Explore
images.tar.gz -- 解压后就是10000张logo图片
数据标注格式如下,box2d为[xmin,ymin,xmax,ymax]
Adidas_0000 Adidas 07686040.jpg logo 1 392 257 422 274
Adidas_0001 Adidas 07706932.jpg logo 1 461 310 501 339
其余文件详情参考官网
数据初始化
此处先将label文件转化为txt格式,然后修改对应的label_path,即可获取数据标签
with open(label_path, "r") as f:
for line in f.readlines():
l = " ".join(line.split("\t"))
labels_origin.append(l.strip("\n"))
imgs_label = {}
classes = []
for i in labels_origin:
if i.split()[2] not in imgs_label.keys():
imgs_label[i.split()[2]] = []
if i.split()[1] not in classes:
classes.append(i.split()[1])
imgs_label[i.split()[2]].append(
[int(i.split()[5]), int(i.split()[6]), int(i.split()[7]), int(i.split()[8]), i.split()[1]])
Citation
All publications making use of BelgaLogos dataset must include the following reference:
Alexis Joly and Olivier Buisson, Logo retrieval with a contrario visual query expansion, In Proceedings of the Seventeen ACM international Conference on Multimedia, 2009.
@inproceedings{belgalogos09,
author = {Joly, Alexis and Buisson, Olivier},
title = {Logo retrieval with a contrario visual query expansion},
booktitle = {MM '09: Proceedings of the seventeen ACM international conference on Multimedia},
year = {2009},
pages = {581--584},
}
If you use the local groundtruth or the Qset3 queries, you must include the following reference:
Pierre Letessier, Olivier Buisson, Alexis Joly, Scalable Mining of Small Visual Objects, In Proceedings of the 20th ACM international Conference on Multimedia, 2012.
@inproceedings{letessier2012scalable,
title={Scalable mining of small visual objects},
author={Letessier, Pierre and Buisson, Olivier and Joly, Alexis},
booktitle={Proceedings of the 20th ACM international conference on Multimedia},
pages={599--608},
year={2012},
organization={ACM}
}
关注公众号,回复 BelgaLogo 即可获得数据集