Added new semantic tags to open3d script

This commit is contained in:
Daniel Santos-Olivan 2020-07-31 17:54:25 +02:00 committed by Marc Garcia Puig
parent dbeec13bfd
commit 7a413c845a
1 changed files with 7 additions and 4 deletions

View File

@ -41,10 +41,13 @@ LABEL_COLORS = np.array([
(157, 234, 50), # RoadLines
(128, 64, 128), # Roads
(244, 35, 232), # Sidewalks
(107, 142, 35), # TrafficSigns
(0, 0, 142), # Vegetation
(102, 102, 156), # Vehicles
(220, 220, 0) # Walls
(107, 142, 35), # Vegetation
(0, 0, 142), # Car
(102, 102, 156), # Walls
(220, 220, 0), # TrafficSign
(70, 130, 180), # Sky
(81, 0, 81), # Ground
(150, 100, 100) # Bridge
]) / 255.0 # normalize each channel [0-1] since is what Open3D uses