vehicle-logos数据集百度网盘下载

[大小]:35.87M

[链接]:https://pan.baidu.com/s/15DVoQsy1haGyQyPpcral5Q

[提取码]:l80e

vehicle-logos数据集官网

[链接]:https://github.com/GeneralBlockchain/vehicle-logos-dataset

Samples

图片

Overview

Vehicle Logos是一个用于分类和实例分割的数据集,共含有34种logo,每种16张图片,共计544张图片。每一个图片都有一个对应的图像类别标签和实例分割图片标签。

logo种类如下

['Toyota', 'Mitsubishi', 'Seat', 'Suzuki', 'Opel', 'Honda 1', 'Renault', 'Mercedes 1', 'Volkswagen', 'Subaru', 'Dacia 1', 'Citroen', 'Land Rover', 'Tesla', 'Mazda', 'Nissan', 'Hyundai', 'Lancia 1', 'Skoda 1', 'Chevrolet 2', 'Porsche', 'Peugeot', 'Jeep', 'Mini', 'Kia 1', 'Lexus', 'Smart 2', 'Volvo 1', 'GMC', 'Ford', 'Daewoo 1', 'Acura', 'Alfa Romeo', 'BMW']

Data Explore

图片

Images -- 544张logo原图

Masks -- 544张logo掩码图像

图片

Source Image Samples -- 8张logo原图(应该没什么用)

structure.csv -- 图像标签文件,每一行是一个图像记录,每一行的特征如下:

Class  Template Name  Image  Mask  Resolution

数据初始化

def read_csv_file(root_path, csv_file_name, key_index, *value_indexs, ignore_firstline=1):    imgs_lable_dict = {}    with open(os.path.join(root_path, csv_file_name), "r") as file:        csv_file = csv.reader(file)        if ignore_firstline == 1:            csv_file.__next__()        for row in csv_file:            if row[key_index] not in imgs_lable_dict.keys():                imgs_lable_dict[row[key_index]] = []            for value_index in value_indexs:                imgs_lable_dict[row[key_index]].append(row[value_index])    return imgs_lable_dict

License

The repository is licensed under Attribution 4.0 International (CC BY 4.0).

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐