【深度学习语义分割常用数据集介绍】--cityscapes
cityscapes数据集体量:包含从50个不同城市收集的照片。包含20K张弱注释图片和5K张高质量的强注释的图片。
·

之前在文章深度学习语义分割常用数据集介绍中介绍了常用的语义分割数据集,本文将详细介绍其中cityscapes的详细内容及使用方法:
1. 数据集简介
数据集体量:包含从50个不同城市收集的照片。包含20K张弱注释图片和5K张高质量的强注释的图片
数据集类别:30个类别,8大组,详见下表:
2. 数据集下载
cityscapes官网
首次进入数据集的官网需要注册账号,提供部分身份信息注册完成后,需要等待官方发送账号激活邮件,激活后的账号便可在官网下载相关数据集。
Ps:官网下载速度比较慢,可以在我的百度云盘下载,关注我,分享网盘地址。
3. 数据集结构解析

gtFine:精细标注的图片;
leftmg8bit:8位LDR格式图片,带有注释;
文件名命名规则:
city_seq_frame_ext
其中:
city:数据所属的城市。
seq:序列号,由6位数字组成。
frame:帧编号,由6位数字组成。请注意,在某些城市中,可能只录制了很少的、非常长的序列,而在某些城市中,可能录制了许多短序列,其中仅有第19帧被注释。
ext:文件的扩展名(6种)
- _color.png: 可视化的图片
- _instanceIds.png:可用于实例分割的图片
- _labelIds.png:可用于语义分割的图片
- _polygons.jons:原始人工标注信息
- _instanceTrainIds.png:通过生成工具将instanceIds.png转换而来
- _labelTrainIds.png:通过生成工具将labelIds.png转换而来
4. 数据集的使用
数据集生成工具
下载后可以得到这样的文件夹,
其中labels.py 中有对各个标签进行解释说明:
#--------------------------------------------------------------------------------
# A list of all labels
#--------------------------------------------------------------------------------
# Please adapt the train IDs as appropriate for your approach.
# Note that you might want to ignore labels with ID 255 during training.
# Further note that the current train IDs are only a suggestion. You can use whatever you like.
# Make sure to provide your results using the original IDs and not the training IDs.
# Note that many IDs are ignored in evaluation and thus you never need to predict these!
labels = [
# name id trainId category catId hasInstances ignoreInEval color
Label( 'unlabeled' , 0 , 255 , 'void' , 0 , False , True , ( 0, 0, 0) ),
Label( 'ego vehicle' , 1 , 255 , 'void' , 0 , False , True , ( 0, 0, 0) ),
Label( 'rectification border' , 2 , 255 , 'void' , 0 , False , True , ( 0, 0, 0) ),
Label( 'out of roi' , 3 , 255 , 'void' , 0 , False , True , ( 0, 0, 0) ),
Label( 'static' , 4 , 255 , 'void' , 0 , False , True , ( 0, 0, 0) ),
Label( 'dynamic' , 5 , 255 , 'void' , 0 , False , True , (111, 74, 0) ),
Label( 'ground' , 6 , 255 , 'void' , 0 , False , True , ( 81, 0, 81) ),
Label( 'road' , 7 , 0 , 'flat' , 1 , False , False , (128, 64,128) ),
Label( 'sidewalk' , 8 , 1 , 'flat' , 1 , False , False , (244, 35,232) ),
Label( 'parking' , 9 , 255 , 'flat' , 1 , False , True , (250,170,160) ),
Label( 'rail track' , 10 , 255 , 'flat' , 1 , False , True , (230,150,140) ),
Label( 'building' , 11 , 2 , 'construction' , 2 , False , False , ( 70, 70, 70) ),
Label( 'wall' , 12 , 3 , 'construction' , 2 , False , False , (102,102,156) ),
Label( 'fence' , 13 , 4 , 'construction' , 2 , False , False , (190,153,153) ),
Label( 'guard rail' , 14 , 255 , 'construction' , 2 , False , True , (180,165,180) ),
Label( 'bridge' , 15 , 255 , 'construction' , 2 , False , True , (150,100,100) ),
Label( 'tunnel' , 16 , 255 , 'construction' , 2 , False , True , (150,120, 90) ),
Label( 'pole' , 17 , 5 , 'object' , 3 , False , False , (153,153,153) ),
Label( 'polegroup' , 18 , 255 , 'object' , 3 , False , True , (153,153,153) ),
Label( 'traffic light' , 19 , 6 , 'object' , 3 , False , False , (250,170, 30) ),
Label( 'traffic sign' , 20 , 7 , 'object' , 3 , False , False , (220,220, 0) ),
Label( 'vegetation' , 21 , 8 , 'nature' , 4 , False , False , (107,142, 35) ),
Label( 'terrain' , 22 , 9 , 'nature' , 4 , False , False , (152,251,152) ),
Label( 'sky' , 23 , 10 , 'sky' , 5 , False , False , ( 70,130,180) ),
Label( 'person' , 24 , 11 , 'human' , 6 , True , False , (220, 20, 60) ),
Label( 'rider' , 25 , 12 , 'human' , 6 , True , False , (255, 0, 0) ),
Label( 'car' , 26 , 13 , 'vehicle' , 7 , True , False , ( 0, 0,142) ),
Label( 'truck' , 27 , 14 , 'vehicle' , 7 , True , False , ( 0, 0, 70) ),
Label( 'bus' , 28 , 15 , 'vehicle' , 7 , True , False , ( 0, 60,100) ),
Label( 'caravan' , 29 , 255 , 'vehicle' , 7 , True , True , ( 0, 0, 90) ),
Label( 'trailer' , 30 , 255 , 'vehicle' , 7 , True , True , ( 0, 0,110) ),
Label( 'train' , 31 , 16 , 'vehicle' , 7 , True , False , ( 0, 80,100) ),
Label( 'motorcycle' , 32 , 17 , 'vehicle' , 7 , True , False , ( 0, 0,230) ),
Label( 'bicycle' , 33 , 18 , 'vehicle' , 7 , True , False , (119, 11, 32) ),
Label( 'license plate' , -1 , -1 , 'vehicle' , 7 , False , True , ( 0, 0,142) ),
]
preparation文件夹中有常用的数据集准备程序:
更多推荐




所有评论(0)