UrbanSyn commited on
Commit
894e7dc
1 Parent(s): 6b37d39

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -1
README.md CHANGED
@@ -70,4 +70,38 @@ While we strive to generate precise data, all information is presented 'as is' w
70
  Funded by Grant agreement PID2020-115734RB-C21 "SSL-ADA" and Grant agreement PID2020-115734RB-C22 "PGAS-ADA"
71
  <img src="MICINN_Gob_AEI_1.jpg" width="300" />
72
 
73
- ## For more information about our team members and how to contact us, visit our website [https://urbansyn.org](https://urbansyn.org)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  Funded by Grant agreement PID2020-115734RB-C21 "SSL-ADA" and Grant agreement PID2020-115734RB-C22 "PGAS-ADA"
71
  <img src="MICINN_Gob_AEI_1.jpg" width="300" />
72
 
73
+ ## For more information about our team members and how to contact us, visit our website [https://urbansyn.org](https://urbansyn.org)
74
+
75
+ ## Folder structure and content
76
+
77
+ - ```rgb```: contains RGB images with a resolution of 2048x1024 in PNG format.
78
+ - ```ss and ss_colour``` : contains the pixel-level semantic segmentation labels in grayscale (value = Class ID) and colour (value = Class RGB) respectivelly in PNG format. We follow the 19 training classes defined on Cityscapes:
79
+ | name | trainId | color |
80
+ |----------------------|---------|-----------------|
81
+ | 'road' | 0 | (128, 64,128) |
82
+ | 'sidewalk' | 1 | (244, 35,232) |
83
+ | 'building' | 2 | ( 70, 70, 70) |
84
+ | 'wall' | 3 | (102,102,156) |
85
+ | 'fence' | 4 | (190,153,153) |
86
+ | 'pole' | 5 | (153,153,153) |
87
+ | 'traffic light' | 6 | (250,170, 30) |
88
+ | 'traffic sign' | 7 | (220,220, 0) |
89
+ | 'vegetation' | 8 | (107,142, 35) |
90
+ | 'terrain' | 9 | (152,251,152) |
91
+ | 'sky' | 10 | ( 70,130,180) |
92
+ | 'person' | 11 | (220, 20, 60) |
93
+ | 'rider' | 12 | (255, 0, 0) |
94
+ | 'car' | 13 | ( 0, 0,142) |
95
+ | 'truck' | 14 | ( 0, 0, 70) |
96
+ | 'bus' | 15 | ( 0, 60,100) |
97
+ | 'train' | 16 | ( 0, 80,100) |
98
+ | 'motorcycle' | 17 | ( 0, 0,230) |
99
+ | 'bicycle' | 18 | (119, 11, 32) |
100
+ | 'unlabeled' | 19 | ( 0, 0, 0) |
101
+ - ```panoptic```: contains the instance segmentation of the dynamic objects of the image in PNG format. Each instance is codified using the RGB channels, where RG corresponds to the instance number and B to the class ID. Dynamic objects are Person, Rider, Car, Truck, Bus, Train, Motorcycle and Bicycle.
102
+ - ```bbox2D```: contains the 2D bounding boxes and Instances information for all the dynamic objects in the image up to 110 meters of distance from the camera and bigger than 150 pixels. We provide the annotations in a json file with the next structure:
103
+ - bbox: provides the bounding box size determined by the top left corner (xMin, yMin) and Bottom right corner (xMax, YMax).
104
+ - color: corresponds to the colour of the instance in the panoptic instance segmentation map inside panoptic folder.
105
+ - label: defines the class name
106
+ - occlusion_percentage: provides the occlusion percentatge of the object. Being 0 not occluded and 100 fully occluded.
107
+ - ```depth```: contains the depth map of the image in EXR format.