From 53c6051091678da8d658fb7bb580f4acb945037a Mon Sep 17 00:00:00 2001 From: sergi-e Date: Wed, 2 Sep 2020 16:06:33 +0200 Subject: [PATCH] First draft --- Docs/ref_sensors.md | 68 +++++++++++++++++++++++++++++++--------- Docs/tuto_A_add_props.md | 29 +++++++++++------ 2 files changed, 73 insertions(+), 24 deletions(-) diff --git a/Docs/ref_sensors.md b/Docs/ref_sensors.md index 883a0f968..5366a3e23 100644 --- a/Docs/ref_sensors.md +++ b/Docs/ref_sensors.md @@ -1448,55 +1448,95 @@ The following tags are currently available: 0 Unlabeled -( 0, 0, 0) +(0, 0, 0) 1 Building -( 70, 70, 70) +(70, 70, 70) 2 Fence -(190, 153, 153) +(100, 40, 40) 3 Other -(250, 170, 160) +(55, 90, 80) 4 Pedestrian -(220, 20, 60) +(220, 20, 60) 5 Pole -(153, 153, 153) +(153, 153, 153) 6 Road line -(157, 234, 50) +(157, 234, 50) 7 Road -(128, 64, 128) +(128, 64, 128) 8 Sidewalk -(244, 35, 232) +(244, 35, 232) 9 Vegetation -(107, 142, 35) +(107, 142, 35) 10 -Car -( 0, 0, 142) +Vehicle +(0, 0, 142) 11 Wall -(102, 102, 156) +(102, 102, 156) 12 Traffic sign -(220, 220, 0) +(220, 220, 0) + +13 +Sky +(70, 130, 180) + +14 +Ground +(81, 0, 81) + +15 +Bridge +(150, 100, 100) + +16 +Rail track +(230, 150, 140) + +17 +Guard rail +(180, 165, 180) + +18 +Traffic +(250, 170, 30) + +19 +Static +(110, 190, 160) + +20 +Dynamic +(170, 120, 50) + +21 +Water +(45, 60, 150) + +22 +Terrain +(145, 170, 100)
diff --git a/Docs/tuto_A_add_props.md b/Docs/tuto_A_add_props.md index a7716dceb..ebcfbf66a 100644 --- a/Docs/tuto_A_add_props.md +++ b/Docs/tuto_A_add_props.md @@ -57,22 +57,31 @@ __Props__ need the following parameters. * `medium` * `big` * `huge` -* __tag__ value for the semantic segmentation. If the tag is misspelled, it will be read as `None`. - * `None` - * `Buildings` - * `Fences` - * `Pedestrians` +* __tag__ value for the semantic segmentation. If the tag is misspelled, it will be read as `Unlabeled`. + * `Bridge` + * `Building` + * `Dynamic` + * `Fence` + * `Ground` + * `Guard rail` + * `Other` + * `Pedestrian` * `Pole` * `Props` - * `RailTrack` + * `Rail track` * `Road` - * `RoadLines` + * `Road line` * `Sidewalk` + * `Sky` + * `Static` * `Terrain` - * `TrafficSigns` + * `Traffic` + * `Traffic sign` + * `Unlabeled` * `Vegetation` - * `Vehicles` - * `Walls` + * `Vehicle` + * `Wall` + * `Water` In the end, the `.json` should look similar to the one below.