BelgaLogos数据集下载

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  274Adidas_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 即可获得数据集

图片

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

田土豆

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值