From 855b74fbfdb60685911b315d211454faa5cadebe Mon Sep 17 00:00:00 2001 From: Chirag Singh Date: Thu, 8 Aug 2024 10:26:45 +0530 Subject: [PATCH] 1. Added a Json File having SpectralDB Materials. 2. Implemented UIList: Lists down the materials to be mapped with. 3. By default Not mapped material is white. 4. Added a Drop down for category and Subcategory from where the user can select the material from spectralDB 5. Corrected hardcoded render123.hdr as highlighted by Manu in #5033 --- .../blenderbim/bim/module/light/__init__.py | 5 +- .../blenderbim/bim/module/light/list.py | 18 + .../bim/module/light/materials.json | 27 - .../blenderbim/bim/module/light/operator.py | 102 +- .../blenderbim/bim/module/light/prop.py | 89 +- .../bim/module/light/spectraldb.json | 1180 +++++++++++++++++ .../blenderbim/bim/module/light/ui.py | 35 +- 7 files changed, 1388 insertions(+), 68 deletions(-) create mode 100644 src/blenderbim/blenderbim/bim/module/light/list.py delete mode 100644 src/blenderbim/blenderbim/bim/module/light/materials.json create mode 100644 src/blenderbim/blenderbim/bim/module/light/spectraldb.json diff --git a/src/blenderbim/blenderbim/bim/module/light/__init__.py b/src/blenderbim/blenderbim/bim/module/light/__init__.py index a33174ee77..22c00b0350 100644 --- a/src/blenderbim/blenderbim/bim/module/light/__init__.py +++ b/src/blenderbim/blenderbim/bim/module/light/__init__.py @@ -17,7 +17,7 @@ # along with BlenderBIM Add-on. If not, see . import bpy -from . import ui, prop, operator +from . import ui, prop, operator, list import stat from pathlib import Path @@ -38,10 +38,13 @@ classes = ( operator.RadianceRender, operator.ViewFromSun, operator.RefreshIFCMaterials, + operator.UnmapMaterial, + prop.RadianceMaterial, prop.BIMSolarProperties, prop.RadianceExporterProperties, ui.BIM_PT_radiance_exporter, ui.BIM_PT_solar, + list.MATERIAL_UL_radiance_materials, ) diff --git a/src/blenderbim/blenderbim/bim/module/light/list.py b/src/blenderbim/blenderbim/bim/module/light/list.py new file mode 100644 index 0000000000..0881454e13 --- /dev/null +++ b/src/blenderbim/blenderbim/bim/module/light/list.py @@ -0,0 +1,18 @@ +import bpy +import json +import os + +with open(os.path.join(os.path.dirname(__file__), "spectraldb.json"), 'r') as f: + spectraldb = json.load(f) + +class MATERIAL_UL_radiance_materials(bpy.types.UIList): + def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index): + if self.layout_type in {'DEFAULT', 'COMPACT'}: + row = layout.row(align=True) + row.prop(item, "name", text="", emboss=False, icon_value=icon) + if item.is_mapped: + row.label(text=f"{item.category} - {item.subcategory}") + op = row.operator("bim.unmap_material", text="", icon='X') + op.material_index = index + else: + row.label(text="Not Mapped (White)") \ No newline at end of file diff --git a/src/blenderbim/blenderbim/bim/module/light/materials.json b/src/blenderbim/blenderbim/bim/module/light/materials.json deleted file mode 100644 index 19215a8ee6..0000000000 --- a/src/blenderbim/blenderbim/bim/module/light/materials.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "ceiling": { - "Black Ceiling 1": "void plastic black_ceiling\n0\n0\n5 0.0460 0.0456 0.0463 0.0052 0.2000", - "Black Ceiling 2": "void plastic black_ceiling\n0\n0\n5 0.1116 0.1085 0.0938 0.0000 0.0000", - "Plastic Ceiling Vent E14 526": "void plastic plastic_ceiling_vent_e14_526\n0\n0\n5 0.7384 0.7195 0.6540 0.0110 0.0500", - "Specular Reflective Ceiling Panels": "void plastic specular_reflective_ceiling_panels\n0\n0\n5 0.7708 0.7673 0.6819 0.0741 0.0500" - }, - "Door": { - "Wooden Door": "void plastic wooden_door\n0\n0\n5 0.6164 0.4257 0.2156 0.0185 0.2000", - "Wooden Door 2": "void plastic wooden_door_2\n0\n0\n5 0.0403 0.0388 0.0406 0.0121 0.2000", - "White Wooden Door": "void plastic white_wooden_door\n0\n0\n5 0.7893 0.7502 0.6413 0.0080 0.2000", - "Off White Door": "void plastic off_white_door\n0\n0\n5 0.8607 0.8611 0.7852 0.0258 0.2000", - "Bedroom Door": "void plastic bedroom_door\n0\n0\n5 0.2508 0.0782 0.0111 0.0279 0.2000" - }, - "Floor": { - "Light Blue Ceramic": "void plastic light_blue_ceramic\n0\n0\n5 0.7477 0.7776 0.7807 0.0323 0.1000", - "Light Grey Ceramic": "void plastic light_grey_ceramic\n0\n0\n5 0.6386 0.5941 0.4982 0.0106 0.2000", - "Purple Carpet": "void plastic purple_carpet\n0\n0\n5 0.0425 0.0179 0.0371 0.0001 0.3000" - }, - "Wall": { - "Dirty Dark Pink Painted Wall": "void plastic dirty_dark_pink_painted_wall\n0\n0\n5 0.3533 0.1751 0.1690 0.0000 0.2000", - "Blue Green Painted Walls": "void plastic blue_green_painted_walls\n0\n0\n5 -0.0013 0.2092 0.2601 0.0140 0.2000", - "Red Painted Wall": "void plastic red_painted_wall\n0\n0\n5 0.4621 0.0156 0.0091 0.0396 0.2000" - } - } -] diff --git a/src/blenderbim/blenderbim/bim/module/light/operator.py b/src/blenderbim/blenderbim/bim/module/light/operator.py index af6d84ecdf..4755685493 100644 --- a/src/blenderbim/blenderbim/bim/module/light/operator.py +++ b/src/blenderbim/blenderbim/bim/module/light/operator.py @@ -38,6 +38,9 @@ from blenderbim.bim.module.light.data import SolarData ifc_materials = [] +with open(os.path.join(os.path.dirname(__file__), "spectraldb.json"), 'r') as f: + spectraldb = json.load(f) + class ExportOBJ(bpy.types.Operator): """Exports the IFC File to OBJ""" @@ -159,6 +162,17 @@ class RadianceRender(bpy.types.Operator): hour = sun_props.hour minute = sun_props.minute + print("Sun Properties:") + print("Latitude: ", latitude) + print("Longitude: ", longitude) + print("Timezone: ", timezone) + print("Month: ", month) + print("Day: ", day) + print("Hour: ", hour) + print("Minute: ", minute) + + + camera = self.get_active_camera(context) if camera is None: self.report({"ERROR"}, "No active camera found in the scene. Please add a camera and set it as active.") @@ -174,9 +188,10 @@ class RadianceRender(bpy.types.Operator): latitude=latitude, longitude=longitude, timezone=timezone, + year=2024, sunny_with_sun=True, sunny_without_sun=False, - cloudy=True, + cloudy=False, ground_reflectance=0.2, turbidity=3.0, ) @@ -204,7 +219,7 @@ class RadianceRender(bpy.types.Operator): # 0 # 4 0 0 -1 180 - if choose_hdr_image == "Noon": + if use_hdr and choose_hdr_image == "Noon": with open(sky_file_path, "w") as f: f.write(sky_description_str) @@ -268,14 +283,14 @@ ground_glow source ground 4 0 0 -1 180""" ) - else: + elif not use_hdr: with open(sky_file_path, "w") as f: f.write(sky_description_str) f.write("\n") - f.write("skyfunc glow sky_glow\n0\n0\n4 .9 .9 1.15 0\n") - f.write("sky_glow source sky\n0\n0\n4 0 0 1 180\n") - f.write("skyfunc glow ground_glow\n0\n0\n4 1.4 .9 .6 0\n") - f.write("ground_glow source ground\n0\n0\n4 0 0 -1 180\n") + # f.write("skyfunc glow sky_glow\n0\n0\n4 .9 .9 1.15 0\n") + # f.write("sky_glow source sky\n0\n0\n4 0 0 1 180\n") + # f.write("skyfunc glow ground_glow\n0\n0\n4 1.4 .9 .6 0\n") + # f.write("ground_glow source ground\n0\n0\n4 0 0 -1 180\n") props = context.scene.radiance_exporter_properties @@ -286,20 +301,46 @@ ground_glow source ground data = props.get_mappings_dict() materials_file = os.path.join(output_dir, "materials.rad") + written_materials = set() + + all_materials = set(ifc_materials) + with open(materials_file, "w") as file: - file.write("void plastic white\n0\n0\n5 0.8 0.8 0.8 0 0\n") - file.write("void plastic blue_plastic\n0\n0\n5 0.1 0.2 0.8 0.05 0.1\n") - file.write("void plastic red_plastic\n0\n0\n5 0.8 0.1 0.2 0.05 0.1\n") - file.write("void metal silver_metal\n0\n0\n5 0.8 0.8 0.8 0.9 0.1\n") - file.write("void glass clear_glass\n0\n0\n3 0.96 0.96 0.96\n") - file.write("void light white_light\n0\n0\n3 1.0 1.0 1.0\n") - file.write("void trans olive_trans\n0\n0\n7 0.6 0.7 0.4 0.05 0.05 0.7 0.2\n") + # Write default materials + default_materials = [ + "void plastic white\n0\n0\n5 0.8 0.8 0.8 0 0\n", + # "void plastic blue_plastic\n0\n0\n5 0.1 0.2 0.8 0.05 0.1\n", + # "void plastic red_plastic\n0\n0\n5 0.8 0.1 0.2 0.05 0.1\n", + # "void metal silver_metal\n0\n0\n5 0.8 0.8 0.8 0.9 0.1\n", + # "void glass clear_glass\n0\n0\n3 0.96 0.96 0.96\n", + # "void light white_light\n0\n0\n3 1.0 1.0 1.0\n", + # "void trans olive_trans\n0\n0\n7 0.6 0.7 0.4 0.05 0.05 0.7 0.2\n", + ] + for material in default_materials: + file.write(material) + written_materials.add(material.split()[2]) # Add material name to written set + + print(data) + print(default_materials) - for style_id, radiance_material in data.items(): - # print(style_id, radiance_material) - file.write("inherit alias " + style_id + " " + data.get(style_id, "white") + "\n") + for style_id in all_materials: + material = next((m for m in props.materials if m.style_id == style_id), None) + if material and material.is_mapped: + category, subcategory = material.category, material.subcategory + if category in spectraldb and subcategory in spectraldb[category]: + material_def = spectraldb[category][subcategory] + material_name = material_def.split()[2] + if material_name not in written_materials: + file.write(material_def + "\n") + written_materials.add(material_name) + file.write(f"inherit alias {style_id} {material_name}\n") + else: + file.write(f"inherit alias {style_id} white\n") + else: + # If the material is not mapped, alias it to white + file.write(f"inherit alias {style_id} white\n") - self.report({"INFO"}, "Exported Materials Rad file to: {}".format(materials_file)) + self.report({"INFO"}, f"Exported Materials Rad file to: {materials_file}") # Run obj2mesh rtm_file_path = os.path.join(output_dir, "model.rtm") @@ -334,7 +375,7 @@ ground_glow source ground variability=variability, ) - output_hdr_path = os.path.join(output_dir, f"render123.{output_file_format.lower()}") + output_hdr_path = os.path.join(output_dir, f"{output_file_name}.{output_file_format.lower()}") if output_file_format == "HDR": with open(output_hdr_path, "wb") as wtr: @@ -464,12 +505,31 @@ class RefreshIFCMaterials(bpy.types.Operator): props = context.scene.radiance_exporter_properties ifc_file = tool.Ifc.get() if props.should_load_from_memory else ifcopenshell.open(props.ifc_file) + props.materials.clear() + for style in ifc_file.by_type("IfcSurfaceStyle"): for render_item in style.Styles: if render_item.is_a("IfcSurfaceStyleRendering"): style_id = f"IfcSurfaceStyleRendering-{render_item.id()}" + ifc_materials.append(style_id) style_name = style.Name or f"Unnamed Style {render_item.id()}" - if not props.get_material_mapping(style_name): - props.add_material_mapping(style_id, style_name) + props.add_material_mapping(style_id, style_name) + props.active_material_index = 0 if props.materials else -1 + + self.report({'INFO'}, f"Refreshed {len(props.materials)} IFC materials") return {"FINISHED"} + + +class UnmapMaterial(bpy.types.Operator): + bl_idname = "bim.unmap_material" + bl_label = "Unmap Material" + bl_options = {'REGISTER', 'UNDO'} + + material_index: bpy.props.IntProperty() + + def execute(self, context): + props = context.scene.radiance_exporter_properties + material = props.materials[self.material_index] + props.unmap_material(material.name) + return {'FINISHED'} \ No newline at end of file diff --git a/src/blenderbim/blenderbim/bim/module/light/prop.py b/src/blenderbim/blenderbim/bim/module/light/prop.py index f17d5625c8..3a6d49af25 100644 --- a/src/blenderbim/blenderbim/bim/module/light/prop.py +++ b/src/blenderbim/blenderbim/bim/module/light/prop.py @@ -19,6 +19,7 @@ import bpy import pytz import tzfpy +import json import datetime import blenderbim.tool as tool from math import radians, pi @@ -32,10 +33,16 @@ from bpy.props import ( BoolProperty, CollectionProperty, ) +import os from bpy.types import PropertyGroup from blenderbim.bim.module.light.data import SolarData from blenderbim.bim.module.light.decorator import SolarDecorator +sun_position = tool.Blender.get_sun_position_addon() + +with open(os.path.join(os.path.dirname(__file__), "spectraldb.json"), 'r') as f: + spectraldb = json.load(f) + def get_sites(self, context): if not SolarData.is_loaded: @@ -149,6 +156,13 @@ def update_sun_path(): obj.data.ortho_scale = props.sun_path_size * 2 +class RadianceMaterial(PropertyGroup): + name: StringProperty(name="Name") + style_id: StringProperty(name="Style ID") + category: StringProperty(name="Category") + subcategory: StringProperty(name="Subcategory") + is_mapped: BoolProperty(name="Is Mapped", default=False) + class RadianceExporterProperties(PropertyGroup): def update_json_file(self, context): @@ -164,24 +178,35 @@ class RadianceExporterProperties(PropertyGroup): self.ifc_file = bpy.path.abspath(self.ifc_file) def add_material_mapping(self, style_id, style_name): - item = self.material_mappings.add() + item = self.materials.add() item.name = style_name - item["style_id"] = style_id - item["radiance_material"] = "white" # Default to white + item.style_id = style_id + item.category = "" + item.subcategory = "" + return item def get_material_mapping(self, style_name): - return next((item for item in self.material_mappings if item.name == style_name), None) + return next((item for item in self.materials if item.name == style_name), None) - def set_material_mapping(self, style_id, style_name, radiance_material): + def set_material_mapping(self, style_id, style_name, category, subcategory): item = self.get_material_mapping(style_name) if item: - item["radiance_material"] = radiance_material + item.category = category + item.subcategory = subcategory else: self.add_material_mapping(style_id, style_name) - self.material_mappings[-1]["radiance_material"] = radiance_material + self.materials[-1].category = category + self.materials[-1].subcategory = subcategory def get_mappings_dict(self): - return {item["style_id"]: item["radiance_material"] for item in self.material_mappings} + return {item.style_id: (item.category, item.subcategory) for item in self.materials if item.category and item.subcategory} + + def unmap_material(self, style_name): + item = self.get_material_mapping(style_name) + if item: + item.category = "" + item.subcategory = "" + item.is_mapped = False use_json_file: BoolProperty( name="Upload JSON", @@ -193,7 +218,53 @@ class RadianceExporterProperties(PropertyGroup): name="Is Exporting", description="Whether the OBJ export is in progress", default=False ) - material_mappings: bpy.props.CollectionProperty(type=bpy.types.PropertyGroup, name="Material Mappings") + categories = [ + ('Wall', 'Wall', ''), + ('Floor', 'Floor', ''), + ('Ceiling', 'Ceiling', ''), + ('Door', 'Door', ''), + ('Furniture', 'Furniture', ''), + ('Exterior Floor', 'Exterior Floor', ''), + ('Others', 'Others', ''), + ('Exterior Building', 'Exterior Building', ''), + ('Window Mullion', 'Window Mullion', ''), + ('PV', 'PV', ''), + ('Plant', 'Plant', ''), + ('Exterior', 'Exterior', ''), + ('Color Swatch', 'Color Swatch', ''), + ] + + def update_material_mapping(self, context): + if self.active_material_index >= 0 and self.active_material_index < len(self.materials): + active_material = self.materials[self.active_material_index] + active_material.category = self.category + active_material.subcategory = self.subcategory + active_material.is_mapped = True + print(f"Material '{active_material.name}' mapped to {self.category} - {self.subcategory}") + + category: bpy.props.EnumProperty( + items=categories, + name="Category", + description="Material category", + update=update_material_mapping + ) + + def get_subcategories(self, context): + if self.category in spectraldb: + return [(k, k, '') for k in spectraldb[self.category].keys()] + return [] + + subcategory: bpy.props.EnumProperty( + items=get_subcategories, + name="Subcategory", + description="Material subcategory", + update=update_material_mapping + ) + + materials: CollectionProperty(type=RadianceMaterial) + active_material_index: IntProperty() + + # material_mappings: bpy.props.CollectionProperty(type=bpy.types.PropertyGroup, name="Material Mappings") # material_mappings: CollectionProperty(type=MaterialMapping) should_load_from_memory: BoolProperty( diff --git a/src/blenderbim/blenderbim/bim/module/light/spectraldb.json b/src/blenderbim/blenderbim/bim/module/light/spectraldb.json new file mode 100644 index 0000000000..812cf88f7c --- /dev/null +++ b/src/blenderbim/blenderbim/bim/module/light/spectraldb.json @@ -0,0 +1,1180 @@ +{ + "Wall": { + "White Painted Room Walls": "void plastic white_painted_room_walls \n0\n0\n5 0.8316 0.8116 0.7226 0.0036 0.2", + "White Painted Corridor Walls": "void plastic white_painted_corridor_walls \n0\n0\n5 0.8143 0.7984 0.715 0.0039 0.2", + "Orange Painted Corridor Walls": "void plastic orange_painted_corridor_walls \n0\n0\n5 0.4289 0.162 0.0528 0.0008 0.2", + "Purple Painted Corridor Walls": "void plastic purple_painted_corridor_walls \n0\n0\n5 0.161 0.1725 0.2447 0 0.2", + "Yellow Painted Walls": "void plastic yellow_painted_walls \n0\n0\n5 0.6303 0.518 0.0829 0.0007 0.2", + "Violet Painted Walls": "void plastic violet_painted_walls \n0\n0\n5 0.4635 0.3973 0.7093 0.0004 0.2", + "Violet Painted Interior Walls": "void plastic violet_painted_interior_walls \n0\n0\n5 0.4767 0.3799 0.5819 0.0008 0.2", + "Grey Painted Interior Wall Ornament": "void plastic grey_painted_interior_wall_ornament \n0\n0\n5 0.0794 0.0774 0.0794 0 0.2", + "Blue Green Painted Walls": "void plastic blue_green_painted_walls \n0\n0\n5 -0.0013 0.2092 0.2601 0.014 0.2", + "White Painted Pillars": "void plastic white_painted_pillars \n0\n0\n5 0.8988 0.8674 0.756 0.0054 0.2", + "Grey Painted Pillars": "void plastic grey_painted_pillars \n0\n0\n5 0.192 0.1855 0.167 0.0154 0.2", + "Blue Painted Walls": "void plastic blue_painted_walls \n0\n0\n5 0.0677 0.2523 0.5685 0 0.2", + "Interior Cladding Lift": "void plastic interior_cladding_lift \n0\n0\n5 0.3852 0.3924 0.3869 0.0099 0.2", + "Wooden Interior Wall Cladding ": "void plastic wooden_interior_wall_cladding_ \n0\n0\n5 0.2855 0.1278 0.0477 0.006 0.2", + "Clean Dark Pink Painted Wall": "void plastic clean_dark_pink_painted_wall \n0\n0\n5 0.3394 0.1412 0.1644 0 0.2", + "Dirty Dark Pink Painted Wall": "void plastic dirty_dark_pink_painted_wall \n0\n0\n5 0.3533 0.1751 0.169 0 0.2", + "Clean Green Painted Wall": "void plastic clean_green_painted_wall \n0\n0\n5 0.4712 0.582 0.1495 0.0008 0.2", + "Moveable Panel Wall": "void plastic moveable_panel_wall \n0\n0\n5 0.866 0.8766 0.8412 0.0209 0.05", + "White Painted Walls": "void plastic white_painted_walls \n0\n0\n5 0.8593 0.8419 0.73 0.0035 0.2", + "Offwhite Plaster Wall": "void plastic offwhite_plaster_wall \n0\n0\n5 0.8784 0.8355 0.7293 0.0043 0.2", + "White Painted Wall": "void plastic white_painted_wall \n0\n0\n5 0.8637 0.8464 0.8068 0.0011 0.2", + "Brown Wall": "void plastic brown_wall \n0\n0\n5 0.0989 0.077 0.0701 0.0007 0.2", + "Purple Wall": "void plastic purple_wall \n0\n0\n5 0.294 0.2556 0.286 0 0", + "Orange Wall": "void plastic orange_wall \n0\n0\n5 0.8228 0.3851 0.0722 0.004 0.2", + "Pink Wall": "void plastic pink_wall \n0\n0\n5 0.6456 0.199 0.0986 0.0024 0.2", + "White Wall": "void plastic white_wall \n0\n0\n5 0.8982 0.8916 0.8377 0.0023 0.2", + "Blue Painted Wall": "void plastic blue_painted_wall \n0\n0\n5 0.0947 0.1934 0.4666 0.0011 0.2", + "Blue Wall": "void plastic blue_wall \n0\n0\n5 0.0811 0.3238 0.5673 0.0021 0.2", + "Grey Painted Wall": "void plastic grey_painted_wall \n0\n0\n5 0.1208 0.1342 0.137 0 0.2", + "Purple Painted Wall": "void plastic purple_painted_wall \n0\n0\n5 0.1226 0.0462 0.1239 0.0007 0.2", + "Green Painted Wall": "void plastic green_painted_wall \n0\n0\n5 0.7383 0.8019 0.2822 0.0011 0.2", + "Whiteboard Paint": "void plastic whiteboard_paint \n0\n0\n5 0.9424 0.9437 0.912 0.0499 0.01", + "Matte White Wall": "void plastic matte_white_wall \n0\n0\n5 0.8197 0.8018 0.7781 0.0098 0.2", + "Whiteboard Wall": "void plastic whiteboard_wall \n0\n0\n5 0.9347 0.9235 0.8463 0.0491 0.01", + "White Painted Concrete Wall": "void plastic white_painted_concrete_wall \n0\n0\n5 0.8911 0.8933 0.8495 0.0107 0.2", + "Dark Felt Acoustic Wall Covering": "void plastic dark_felt_acoustic_wall_covering \n0\n0\n5 0.0879 0.0702 0.0648 0.0015 0.3", + "Dark Brown Wall": "void plastic dark_brown_wall \n0\n0\n5 0.0756 0.0728 0.0721 0.0022 0.2", + "White Wall Plaster": "void plastic white_wall_plaster \n0\n0\n5 0.8897 0.9031 0.8671 0 0.2", + "Glossy White Tile": "void plastic glossy_white_tile \n0\n0\n5 0.8596 0.8583 0.8248 0.0404 0.05", + "White Plaster Wall": "void plastic white_plaster_wall \n0\n0\n5 0.8648 0.8084 0.6849 0 0.2", + "Red Painted Wall": "void plastic red_painted_wall \n0\n0\n5 0.5392 0.0474 0.0503 0.0014 0.2", + "Grey Wall Tile": "void plastic grey_wall_tile \n0\n0\n5 0.6106 0.5593 0.4468 0.03 0.1", + "Beige Plaster Wall": "void plastic beige_plaster_wall \n0\n0\n5 0.8947 0.8785 0.7391 0 0.2", + "White Ceramic Tile Wall": "void plastic white_ceramic_tile_wall \n0\n0\n5 0.8586 0.8649 0.8232 0.0114 0.2", + "Beige Door": "void plastic beige_door \n0\n0\n5 0.6028 0.4991 0.3645 0.0072 0.2", + "Pink Painted Wall": "void plastic pink_painted_wall \n0\n0\n5 0.7833 0.685 0.5794 0.0033 0.2", + "Yellow Plaster Wall": "void plastic yellow_plaster_wall \n0\n0\n5 0.8591 0.6857 0.376 0.0013 0.2", + "Dark Green Ceramic Tile Wall": "void plastic dark_green_ceramic_tile_wall \n0\n0\n5 0.0631 0.0853 0.0438 0.0225 0.2", + "Plain White Ceramic Tile Wall": "void plastic plain_white_ceramic_tile_wall \n0\n0\n5 0.8943 0.8829 0.8374 0.0381 0.2", + "Stone Ceramic Tile Wall": "void plastic stone_ceramic_tile_wall \n0\n0\n5 0.8039 0.7763 0.7001 0.0364 0.2", + "Beige Plastic Toilet Door": "void plastic beige_plastic_toilet_door \n0\n0\n5 0.8524 0.791 0.5937 0.0097 0.2", + "Yellow Door": "void plastic yellow_door \n0\n0\n5 0.575 0.5011 0.2511 0.0104 0.2", + "Light Blue Tile Wall": "void plastic light_blue_tile_wall \n0\n0\n5 0.7209 0.752 0.7816 0.0393 0.1", + "Dark Blue Tile Wall": "void plastic dark_blue_tile_wall \n0\n0\n5 0.0249 0.0314 0.0963 0.0356 0.1", + "Beige Painted Wall": "void plastic beige_painted_wall \n0\n0\n5 0.7386 0.6703 0.5455 0.0021 0.2", + "Faux Wood Laminate": "void plastic faux_wood_laminate \n0\n0\n5 0.3018 0.258 0.2261 0 0.2", + "Grey Plaster Wall": "void plastic grey_plaster_wall \n0\n0\n5 0.2253 0.2161 0.1981 0 0.2", + "White Ceramic Wall": "void plastic white_ceramic_wall \n0\n0\n5 0.7883 0.7508 0.668 0.09 0.2", + "Beige Ceramic Tile Wall": "void plastic beige_ceramic_tile_wall \n0\n0\n5 0.8538 0.8459 0.8136 0.0421 0.1", + "Black Ceramic Wall Tile": "void plastic black_ceramic_wall_tile \n0\n0\n5 0.0032 0.0034 0.0029 0.0393 0.1", + "White Wall Tile": "void plastic white_wall_tile \n0\n0\n5 0.9025 0.8885 0.8433 0.0454 0.1", + "Light Grey Interior Metal Partition": "void plastic light_grey_interior_metal_partition \n0\n0\n5 0.6954 0.7366 0.8045 0.0469 0.1", + "Brown Ceramic Tile Wall": "void plastic brown_ceramic_tile_wall \n0\n0\n5 0.6197 0.6057 0.5485 0.0396 0.1", + "Grey Ceramic Tile Wall": "void plastic grey_ceramic_tile_wall \n0\n0\n5 0.746 0.7505 0.7118 0.0402 0.1", + "Natural Stone Tile": "void plastic natural_stone_tile \n0\n0\n5 0.499 0.4526 0.3313 0 0.2", + "Ceramic White Tile": "void plastic ceramic_white_tile \n0\n0\n5 0.687 0.6839 0.643 0.0397 0.1", + "Ceramic Grey Tile": "void plastic ceramic_grey_tile \n0\n0\n5 0.5168 0.5288 0.5216 0.0399 0.1", + "Blue Plaster Wall": "void plastic blue_plaster_wall \n0\n0\n5 0.6504 0.7883 0.7878 0 0.2", + "White Tile Wall": "void plastic white_tile_wall \n0\n0\n5 0.8863 0.8681 0.8211 0.0375 0.2", + "Beige Toilet Door": "void plastic beige_toilet_door \n0\n0\n5 0.6417 0.5372 0.341 0.0085 0.2", + "Beige Plaster Wall 2": "void plastic beige_plaster_wall_2 \n0\n0\n5 0.934 0.8047 0.4361 0 0.2", + "Stone Decorative Wall": "void plastic stone_decorative_wall \n0\n0\n5 0.1585 0.1474 0.139 0.0011 0.2", + "Ceramic Light Grey Tile": "void plastic ceramic_light_grey_tile \n0\n0\n5 0.6992 0.6654 0.623 0.0124 0.2", + "White Door": "void plastic white_door \n0\n0\n5 0.5944 0.5852 0.4991 0.0127 0.2", + "Exterior Wall": "void plastic exterior_wall \n0\n0\n5 0.6578 0.6455 0.544 0.0016 0.2", + "White Ceramic Tile": "void plastic white_ceramic_tile \n0\n0\n5 0.8996 0.8859 0.8461 0.0374 0.1", + "Rust Color Glazed Ceramic Tile": "void plastic rust_color_glazed_ceramic_tile \n0\n0\n5 0.6801 0.6514 0.6021 0.0403 0.1", + "Wall E14 548": "void plastic wall_e14_548 \n0\n0\n5 0.8404 0.8266 0.7442 0.0127 0.2", + "New Wall E14 526": "void plastic new_wall_e14_526 \n0\n0\n5 0.8509 0.8321 0.74 0.012 0.1", + "Old Wall E14 526": "void plastic old_wall_e14_526 \n0\n0\n5 0.8351 0.8178 0.7259 0.0113 0.1", + "East Wall 7 301A": "void plastic east_wall_7_301a \n0\n0\n5 0.7887 0.7483 0.6223 0.0061 0.2", + "West Wall 7 301A": "void plastic west_wall_7_301a \n0\n0\n5 0.7855 0.7453 0.6212 0.0064 0.2", + "Wall Old Building": "void plastic wall_old_building \n0\n0\n5 0.8468 0.8407 0.7774 0.0039 0.2", + "Historic Brick Wall": "void plastic historic_brick_wall \n0\n0\n5 0.3463 0.2141 0.1275 0 0.2", + "New Brick Wall": "void plastic new_brick_wall \n0\n0\n5 0.4208 0.2912 0.1362 0.0002 0.2", + "Wood Panel Wall": "void plastic wood_panel_wall \n0\n0\n5 0.6865 0.4992 0.287 0.0224 0.2", + "Black Wall": "void plastic black_wall \n0\n0\n5 0.0297 0.0308 0.0323 0.0153 0.2", + "Grey Wall": "void plastic grey_wall \n0\n0\n5 0.1552 0.1541 0.1445 0.0045 0.2", + "White Wall 1": "void plastic white_wall_1 \n0\n0\n5 0.8688 0.8454 0.7299 0.0093 0.2", + "White Board Partition Wall 1": "void plastic white_board_partition_wall_1 \n0\n0\n5 0.7688 0.7635 0.7144 0.0504 0.01", + "Partition Wall 2": "void plastic partition_wall_2 \n0\n0\n5 0.8711 0.8795 0.84 0.0106 0.2", + "Partition Wall 1": "void plastic partition_wall_1 \n0\n0\n5 0.7464 0.7412 0.6929 0.0442 0.2", + "Green Wall": "void plastic green_wall \n0\n0\n5 0.3343 0.4298 0.0535 0 0", + "White Curved Wall": "void plastic white_curved_wall \n0\n0\n5 0.8153 0.81 0.7812 0 0", + "White Wall 3": "void plastic white_wall_3 \n0\n0\n5 0.9004 0.8683 0.7565 0.0121 0.3", + "Specular White Wall": "void plastic specular_white_wall \n0\n0\n5 0.8641 0.8695 0.8253 0.0305 0.05", + "Partition": "void plastic partition \n0\n0\n5 0.5984 0.5628 0.4796 0.002 0.3", + "Partition Wall 3": "void plastic partition_wall_3 \n0\n0\n5 0.8688 0.8763 0.835 0.0146 0.3", + "Red Interior Wall": "void plastic red_interior_wall \n0\n0\n5 0.3286 0.0995 0.122 0 0", + "White Wall 4": "void plastic white_wall_4 \n0\n0\n5 0.8735 0.8524 0.7369 0 0", + "White Board Partition Wall 2": "void plastic white_board_partition_wall_2 \n0\n0\n5 0.8655 0.8638 0.7661 0.0615 0.01", + "Gray Wall (Bottom)": "void plastic gray_wall_(bottom) \n0\n0\n5 0.0924 0.0885 0.0894 0.0197 0.2", + "White Wall 5": "void plastic white_wall_5 \n0\n0\n5 0.8819 0.8872 0.8389 0.0069 0.3", + "Light Yellow Wall": "void plastic light_yellow_wall \n0\n0\n5 0.8284 0.7884 0.6528 0.003 0.3", + "White Plaster Wall CH": "void plastic white_plaster_wall_ch \n0\n0\n5 0.8783 0.8673 0.8121 0.0022 0.3", + "White Plaster Wall NL": "void plastic white_plaster_wall_nl \n0\n0\n5 0.8149 0.7976 0.7076 0.001 0.3", + "White Plastic Partition Wall NL": "void plastic white_plastic_partition_wall_nl \n0\n0\n5 0.8619 0.8575 0.8389 0.0009 0.3" + }, + "Floor": { + "Dark Grey Floor Tiles": "void plastic dark_grey_floor_tiles \n0\n0\n5 0.2015 0.1879 0.1716 0.0125 0.2", + "Dark Grey Floor Tiles Nonslip": "void plastic dark_grey_floor_tiles_nonslip \n0\n0\n5 0.2341 0.2286 0.2048 0.0015 0.3", + "Light Grey Floor Tiles Nonslip": "void plastic light_grey_floor_tiles_nonslip \n0\n0\n5 0.4442 0.414 0.3328 0.0019 0.3", + "Dark Grey Tiles On Lift Lobby": "void plastic dark_grey_tiles_on_lift_lobby \n0\n0\n5 0.2167 0.2142 0.2013 0.001 0.2", + "Light Grey Tiles On Lift Lobby": "void plastic light_grey_tiles_on_lift_lobby \n0\n0\n5 0.4713 0.4534 0.3891 0.0026 0.2", + "Dark Grey Stone Tiles": "void plastic dark_grey_stone_tiles \n0\n0\n5 0.2659 0.2685 0.2528 0.0006 0.3", + "Light Grey Stone Tiles": "void plastic light_grey_stone_tiles \n0\n0\n5 0.2805 0.2811 0.2644 0 0.3", + "Yellow Painted Stone Tiles": "void plastic yellow_painted_stone_tiles \n0\n0\n5 0.8521 0.4521 0.0299 0.0026 0.3", + "Wooden Floor Planks": "void plastic wooden_floor_planks \n0\n0\n5 0.1641 0.0883 0.0458 0.0017 0.2", + "Dark Grey Floor": "void plastic dark_grey_floor \n0\n0\n5 0.1566 0.1556 0.1534 0.0093 0.2", + "Offwhite Floor": "void plastic offwhite_floor \n0\n0\n5 0.6636 0.6218 0.5246 0.0213 0.2", + "Black Wooden Stage Floor": "void plastic black_wooden_stage_floor \n0\n0\n5 0.0394 0.0374 0.0364 0.0101 0.2", + "Blue Tiles": "void plastic blue_tiles \n0\n0\n5 0.0474 0.1198 0.2256 0.0444 0.1", + "Turquoise Tiles": "void plastic turquoise_tiles \n0\n0\n5 0.0249 0.204 0.2489 0.0441 0.1", + "Light Green Tiles": "void plastic light_green_tiles \n0\n0\n5 0.226 0.2675 0.1815 0.0309 0.1", + "Dark Grey Painted Floor": "void plastic dark_grey_painted_floor \n0\n0\n5 0.1053 0.117 0.1274 0.0168 0.2", + "Light Grey Painted Floor": "void plastic light_grey_painted_floor \n0\n0\n5 0.3648 0.3596 0.3214 0.0192 0.2", + "Mosaic Floor": "void plastic mosaic_floor \n0\n0\n5 0.4054 0.4025 0.4017 0.0148 0.2", + "Black Stone Tiles": "void plastic black_stone_tiles \n0\n0\n5 0.0658 0.0695 0.0727 0.0043 0.2", + "Dark Grey Tiles": "void plastic dark_grey_tiles \n0\n0\n5 0.0954 0.0925 0.0908 0.0122 0.2", + "Grey Floor Tiles": "void plastic grey_floor_tiles \n0\n0\n5 0.1284 0.1276 0.1209 0.0001 0.2", + "Interior Flooring": "void plastic interior_flooring \n0\n0\n5 0.3699 0.3768 0.3729 0.0107 0.2", + "Grey Nonscratch Floor": "void plastic grey_nonscratch_floor \n0\n0\n5 0.3749 0.3822 0.3803 0.0112 0.2", + "Hospital Floor": "void plastic hospital_floor \n0\n0\n5 0.6174 0.5672 0.4891 0.0133 0.1", + "Walkway White Floor": "void plastic walkway_white_floor \n0\n0\n5 0.5746 0.5322 0.4421 0.0229 0.2", + "Dark Carpet": "void plastic dark_carpet \n0\n0\n5 0.0405 0.037 0.0324 0.0002 0.3", + "Light Carpet": "void plastic light_carpet \n0\n0\n5 0.0619 0.0569 0.0517 0.0002 0.3", + "Wood Laminate Floor": "void plastic wood_laminate_floor \n0\n0\n5 0.4175 0.3727 0.3069 0.0111 0.2", + "Blue Carpet": "void plastic blue_carpet \n0\n0\n5 0.0367 0.0697 0.1211 0.0001 0.3", + "Purple Carpet": "void plastic purple_carpet \n0\n0\n5 0.0425 0.0179 0.0371 0.0001 0.3", + "Carpet Grey": "void plastic carpet_grey \n0\n0\n5 0.049 0.0424 0.0344 0 0.3", + "Grey Carpet": "void plastic grey_carpet \n0\n0\n5 0.1048 0.0989 0.0824 0.0003 0.3", + "Light Beige Carpet": "void plastic light_beige_carpet \n0\n0\n5 0.1721 0.1369 0.0872 0.0004 0.3", + "UFAD Duct Cover": "void plastic ufad_duct_cover \n0\n0\n5 0.0192 0.0202 0.0213 0.0283 0.1", + "Light Beige Carpet 2": "void plastic light_beige_carpet_2 \n0\n0\n5 0.1822 0.1424 0.086 0 0.3", + "Brown And Black Carpet": "void plastic brown_and_black_carpet \n0\n0\n5 0.0515 0.041 0.0327 0 0.3", + "Terazzo Tile": "void plastic terazzo_tile \n0\n0\n5 0.6197 0.587 0.513 0.0237 0.1", + "Ceramic Grey Tile": "void plastic ceramic_grey_tile \n0\n0\n5 0.4171 0.3858 0.3167 0.0115 0.2", + "Parquet Floor": "void plastic parquet_floor \n0\n0\n5 0.2417 0.1069 0.0341 0.0189 0.2", + "Light Grey Floor Tile": "void plastic light_grey_floor_tile \n0\n0\n5 0.5319 0.5329 0.4972 0.0216 0.1", + "Brown Floor Tile": "void plastic brown_floor_tile \n0\n0\n5 0.2162 0.1768 0.1443 0.011 0.2", + "Grey Floor Tile": "void plastic grey_floor_tile \n0\n0\n5 0.266 0.2541 0.2393 0.0074 0.2", + "Grey Ceramic Tile Floor": "void plastic grey_ceramic_tile_floor \n0\n0\n5 0.2914 0.2707 0.2285 0.0119 0.2", + "Beige Ceramic Tile Floor": "void plastic beige_ceramic_tile_floor \n0\n0\n5 0.3927 0.3171 0.2226 0.0096 0.2", + "Ceramic Tile Floor": "void plastic ceramic_tile_floor \n0\n0\n5 0.4341 0.3762 0.2863 0.0078 0.2", + "Ruby Stone Ceramic Tile Floor": "void plastic ruby_stone_ceramic_tile_floor \n0\n0\n5 0.434 0.3355 0.2628 0.0164 0.2", + "White Ceramic Tile Floor": "void plastic white_ceramic_tile_floor \n0\n0\n5 0.6908 0.6719 0.6278 0.0332 0.2", + "Beige Floor Tile": "void plastic beige_floor_tile \n0\n0\n5 0.6745 0.6027 0.4801 0.014 0.2", + "Wood Parquet Floor": "void plastic wood_parquet_floor \n0\n0\n5 0.095 0.0567 0.037 0.0125 0.2", + "Beige Floor": "void plastic beige_floor \n0\n0\n5 0.546 0.4832 0.3783 0.0022 0.2", + "Beige Ceramic Tile Kitchen Floor": "void plastic beige_ceramic_tile_kitchen_floor \n0\n0\n5 0.7675 0.7543 0.7083 0.0095 0.2", + "Laminate Floor": "void plastic laminate_floor \n0\n0\n5 0.3032 0.2057 0.1229 0.0087 0.2", + "Brown Parquet Floor": "void plastic brown_parquet_floor \n0\n0\n5 0.2695 0.1137 0.0254 0.028 0.2", + "Light Blue Ceramic Tile Floor": "void plastic light_blue_ceramic_tile_floor \n0\n0\n5 0.7477 0.7776 0.7807 0.0323 0.1", + "Light Grey Ceramic Tile Floor": "void plastic light_grey_ceramic_tile_floor \n0\n0\n5 0.6386 0.5941 0.4982 0.0106 0.2", + "Ceramic Stone Tile": "void plastic ceramic_stone_tile \n0\n0\n5 0.308 0.2409 0.179 0.0339 0.2", + "Ceramic Granite Tile": "void plastic ceramic_granite_tile \n0\n0\n5 0.3416 0.3474 0.3193 0.0145 0.1", + "Beige Tile Floor": "void plastic beige_tile_floor \n0\n0\n5 0.4293 0.3456 0.2438 0.011 0.2", + "Ceramic Tile": "void plastic ceramic_tile \n0\n0\n5 0.7565 0.7348 0.6699 0.0245 0.2", + "Laminate Wood Floor": "void plastic laminate_wood_floor \n0\n0\n5 0.1193 0.0636 0.0295 0.0264 0.2", + "Artificial Grass Matt": "void plastic artificial_grass_matt \n0\n0\n5 0.0931 0.1107 0.0365 0 0.2", + "Off White Ceramic Floor Tile": "void plastic off_white_ceramic_floor_tile \n0\n0\n5 0.7025 0.6644 0.5726 0.0441 0.1", + "Matte Ceramic Floor Tile": "void plastic matte_ceramic_floor_tile \n0\n0\n5 0.6757 0.6349 0.5561 0.012 0.2", + "Wooden Parquet Floor": "void plastic wooden_parquet_floor \n0\n0\n5 0.3223 0.1395 0.0324 0.0205 0.2", + "Brown Wooden Floor": "void plastic brown_wooden_floor \n0\n0\n5 0.0454 0.0412 0.0401 0.0074 0.2", + "White Ceramic Tile": "void plastic white_ceramic_tile \n0\n0\n5 0.672 0.6582 0.6157 0.0387 0.2", + "Beige Ceramic Tile": "void plastic beige_ceramic_tile \n0\n0\n5 0.6352 0.579 0.4874 0.0064 0.2", + "Carpet Edge E14 548": "void plastic carpet_edge_e14_548 \n0\n0\n5 0.0457 0.0467 0.0456 0 0.2", + "Carpet Center E14 548": "void plastic carpet_center_e14_548 \n0\n0\n5 0.0583 0.0604 0.0589 0 0.2", + "Carpet E14 526": "void plastic carpet_e14_526 \n0\n0\n5 0.1977 0.1761 0.1398 0.0004 0.2", + "Carpet 7 301A": "void plastic carpet_7_301a \n0\n0\n5 0.0733 0.0713 0.0649 0 0.2", + "Accessibility Ramp": "void plastic accessibility_ramp \n0\n0\n5 0.1522 0.1497 0.1391 0.0118 0.2", + "Wood Floor": "void plastic wood_floor \n0\n0\n5 0.4976 0.2937 0.0947 0.0241 0.2", + "Wood Stair Treads": "void plastic wood_stair_treads \n0\n0\n5 0.0692 0.0401 0.0293 0.0194 0.2", + "Light Wood Floor": "void plastic light_wood_floor \n0\n0\n5 0.6399 0.4775 0.307 0.0223 0.1", + "Carpeted Stair Tread": "void plastic carpeted_stair_tread \n0\n0\n5 0.0923 0.0827 0.0701 0 0.3", + "Wood Floor 2": "void plastic wood_floor_2 \n0\n0\n5 0.4509 0.2381 0.0755 0.0123 0.2", + "Carpet": "void plastic carpet \n0\n0\n5 0.0618 0.0596 0.0552 0 0.3", + "Concrete Floor": "void plastic concrete_floor \n0\n0\n5 0.302 0.2817 0.2323 0.0065 0.2", + "Metal Stairs": "void plastic metal_stairs \n0\n0\n5 0.1295 0.1287 0.1205 0.004 0.2", + "Floor 1": "void plastic floor_1 \n0\n0\n5 0.3502 0.3506 0.3375 0.0145 0.3", + "Grey Concrete Floor": "void plastic grey_concrete_floor \n0\n0\n5 0.3265 0.3005 0.2423 0 0", + "Floor Tile": "void plastic floor_tile \n0\n0\n5 0.3643 0.3704 0.3635 0.0067 0.2", + "Carpet 1": "void plastic carpet_1 \n0\n0\n5 0.1089 0.1125 0.1137 0 0", + "Floor 2": "void plastic floor_2 \n0\n0\n5 0.3702 0.3768 0.3695 0.0073 0.3", + "Tile Floor": "void plastic tile_floor \n0\n0\n5 0.3643 0.3704 0.3635 0.0067 0.3", + "Carpet 2": "void plastic carpet_2 \n0\n0\n5 0.1887 0.1429 0.081 0 0", + "Floor 3": "void plastic floor_3 \n0\n0\n5 0.0441 0.0436 0.0431 0.0055 0.3", + "Floor 4": "void plastic floor_4 \n0\n0\n5 0.4773 0.4302 0.3366 0.0092 0.2", + "Grey Carpet NL": "void plastic grey_carpet_nl \n0\n0\n5 0.1157 0.1268 0.1259 0 0", + "Grey Laminated Floor CH": "void plastic grey_laminated_floor_ch \n0\n0\n5 0.3045 0.2959 0.2636 0.0096 0.3" + }, + "Ceiling": { + "White Painted Room Ceiling": "void plastic white_painted_room_ceiling \n0\n0\n5 0.8462 0.8206 0.7263 0.0044 0.2", + "White Ceiling Panels": "void plastic white_ceiling_panels \n0\n0\n5 0.8574 0.8495 0.798 0.0047 0.3", + "White Painted Corridor Ceiling": "void plastic white_painted_corridor_ceiling \n0\n0\n5 0.8977 0.8709 0.7644 0.0053 0.2", + "Black Ceiling": "void plastic black_ceiling \n0\n0\n5 0.1116 0.1085 0.0938 0 0", + "Dropped Ceiling": "void plastic dropped_ceiling \n0\n0\n5 0.8594 0.8499 0.7993 0.01 0.3", + "Dropped Ceiling Panel": "void plastic dropped_ceiling_panel \n0\n0\n5 0.8532 0.855 0.8366 0.0087 0.3", + "Acoustic Ceiling Tile": "void plastic acoustic_ceiling_tile \n0\n0\n5 0.8964 0.8938 0.8677 0.008 0.3", + "Metal HVAC Ceiling Grill": "void plastic metal_hvac_ceiling_grill \n0\n0\n5 0.8432 0.8146 0.7144 0.0389 0.1", + "White Painted Ceiling": "void plastic white_painted_ceiling \n0\n0\n5 0.9015 0.8957 0.8459 0 0.2", + "Acoustic Ceiling Tiles": "void plastic acoustic_ceiling_tiles \n0\n0\n5 0.8813 0.8782 0.8611 0.0086 0.3", + "White Acoustic Ceiling Panels": "void plastic white_acoustic_ceiling_panels \n0\n0\n5 0.8752 0.8717 0.8471 0.0079 0.3", + "Specular Reflective Ceiling Panels": "void plastic specular_reflective_ceiling_panels \n0\n0\n5 0.7708 0.7673 0.6819 0.0741 0.05", + "Ceiling E14 548": "void plastic ceiling_e14_548 \n0\n0\n5 0.8443 0.8515 0.8154 0.0059 0.1", + "Plastic Ceiling Vent E14 548": "void plastic plastic_ceiling_vent_e14_548 \n0\n0\n5 0.7818 0.8047 0.8057 0.0365 0.05", + "Ceiling E14 526": "void plastic ceiling_e14_526 \n0\n0\n5 0.8816 0.8731 0.832 0.0063 0.1", + "Plastic Ceiling Vent E14 526": "void plastic plastic_ceiling_vent_e14_526 \n0\n0\n5 0.7384 0.7195 0.654 0.011 0.05", + "White Ceiling": "void plastic white_ceiling \n0\n0\n5 0.8907 0.8814 0.8225 0.0029 0.3", + "Dropped Acoustic Ceiling Tile": "void plastic dropped_acoustic_ceiling_tile \n0\n0\n5 0.845 0.8165 0.717 0.0137 0.3", + "White Ceiling Panel NL": "void plastic white_ceiling_panel_nl \n0\n0\n5 0.8394 0.8284 0.7931 0.0009 0.3", + "White Plaster Ceiling CH": "void plastic white_plaster_ceiling_ch \n0\n0\n5 0.8812 0.8708 0.8165 0.0028 0.3" + }, + "Door": { + "Light Brown Wooden Doors": "void plastic light_brown_wooden_doors \n0\n0\n5 0.5235 0.3815 0.193 0.0201 0.1", + "Lift Interior Door": "void plastic lift_interior_door \n0\n0\n5 0.3401 0.319 0.2787 0.1499 0.05", + "Grey Painted Door Dry Riser": "void plastic grey_painted_door_dry_riser \n0\n0\n5 0.3455 0.3465 0.3319 0.0093 0.2", + "White Painted Door": "void plastic white_painted_door \n0\n0\n5 0.8341 0.795 0.6634 0.0298 0.2", + "Black Painted Door": "void plastic black_painted_door \n0\n0\n5 0.0109 0.0111 0.0121 0.0352 0.1", + "Wooden Door": "void plastic wooden_door \n0\n0\n5 0.6164 0.4257 0.2156 0.0185 0.2", + "Purple Cubicle Door": "void plastic purple_cubicle_door \n0\n0\n5 0.6061 0.5021 0.632 0.0097 0.2", + "Grey Door Frame": "void plastic grey_door_frame \n0\n0\n5 0.2002 0.1951 0.1784 0.0108 0.2", + "Green Cubicle Doors": "void plastic green_cubicle_doors \n0\n0\n5 0.4806 0.6201 0.1624 0.0127 0.2", + "Hospital Toilet Door": "void plastic hospital_toilet_door \n0\n0\n5 0.545 0.3244 0.139 0.0101 0.2", + "Green Metal Door": "void plastic green_metal_door \n0\n0\n5 0.0311 0.0693 0.059 0.0457 0.05", + "Off White Door": "void plastic off_white_door \n0\n0\n5 0.8593 0.7594 0.5542 0.0302 0.2", + "White Door": "void plastic white_door \n0\n0\n5 0.8241 0.8327 0.7735 0.0147 0.2", + "Grey Door": "void plastic grey_door \n0\n0\n5 0.4368 0.4383 0.4241 0.0193 0.2", + "Door": "void plastic door \n0\n0\n5 0.337 0.3348 0.32 0.016 0.2", + "PVC Toilet Door": "void plastic pvc_toilet_door \n0\n0\n5 0.8274 0.8559 1.1573 0.0215 0.2", + "PVC White Toilet Door": "void plastic pvc_white_toilet_door \n0\n0\n5 0.8415 0.858 1.0256 0.0487 0.1", + "White Plastic Toilet Door": "void plastic white_plastic_toilet_door \n0\n0\n5 0.508 0.6027 0.7041 0.029 0.2", + "White Wooden Door": "void plastic white_wooden_door \n0\n0\n5 0.7893 0.7502 0.6413 0.008 0.2", + "Beige Wooden Door": "void plastic beige_wooden_door \n0\n0\n5 0.8391 0.7781 0.6257 0.024 0.2", + "Laminate Door": "void plastic laminate_door \n0\n0\n5 0.1038 0.0607 0.0342 0.0234 0.2", + "Black Door": "void plastic black_door \n0\n0\n5 0.0254 0.0263 0.0279 0.0203 0.2", + "Dark Brown Door": "void plastic dark_brown_door \n0\n0\n5 0.0398 0.0224 0.0166 0.0332 0.2", + "Brown Bedroom Door": "void plastic brown_bedroom_door \n0\n0\n5 0.2984 0.1011 0.0069 0.0415 0.2", + "Green Toilet Door": "void plastic green_toilet_door \n0\n0\n5 0.0905 0.1766 0.1245 0.0367 0.1", + "Beige Door": "void plastic beige_door \n0\n0\n5 0.6293 0.5404 0.3648 0.0009 0.2", + "Blue Plastic Toilet Door": "void plastic blue_plastic_toilet_door \n0\n0\n5 0.0153 0.0744 0.0941 0.0394 0.1", + "Blue Door": "void plastic blue_door \n0\n0\n5 0.5785 0.6551 0.5901 0.0144 0.2", + "Purple Plastic Toilet Door": "void plastic purple_plastic_toilet_door \n0\n0\n5 0.4215 0.2717 0.6532 0.0536 0.1", + "Bedroom Door": "void plastic bedroom_door \n0\n0\n5 0.2508 0.0782 0.0111 0.0279 0.2", + "Beige Painted Door Frame": "void plastic beige_painted_door_frame \n0\n0\n5 0.6763 0.5586 0.3562 0.0125 0.2", + "Beige Painted Door": "void plastic beige_painted_door \n0\n0\n5 0.7125 0.5952 0.3866 0.0122 0.2", + "Darkbrown Laminate Door": "void plastic darkbrown_laminate_door \n0\n0\n5 0.0496 0.046 0.0445 0.0083 0.2", + "Lightbrown Laminate Door": "void plastic lightbrown_laminate_door \n0\n0\n5 0.4103 0.1998 0.0599 0.0118 0.2", + "Door E14 548": "void plastic door_e14_548 \n0\n0\n5 0.5111 0.5195 0.5106 0.0222 0.1", + "Sliding Door E14 526": "void plastic sliding_door_e14_526 \n0\n0\n5 0.3615 0.3949 0.4307 0.0118 0.1", + "Door 7 301A": "void plastic door_7_301a \n0\n0\n5 0.6742 0.4833 0.248 0.0328 0.05", + "Door Frame 7 301A": "void plastic door_frame_7_301a \n0\n0\n5 0.7841 0.7458 0.6211 0.006 0.1", + "Green Door Frame ": "void plastic green_door_frame_ \n0\n0\n5 0.0691 0.1084 0.1011 0.001 0.2", + "Green Door Panel": "void plastic green_door_panel \n0\n0\n5 0.2118 0.2543 0.2028 0.0017 0.2", + "Aluminium Door": "void plastic aluminium_door \n0\n0\n5 0.4247 0.4247 0.4055 0.0316 0.1", + "White Painted Wooden Door": "void plastic white_painted_wooden_door \n0\n0\n5 0.8586 0.8578 0.7974 0.0175 0.2", + "Painted Metal Door": "void plastic painted_metal_door \n0\n0\n5 0.1572 0.1544 0.1423 0.0245 0.1", + "Elevator Door": "void plastic elevator_door \n0\n0\n5 0.3046 0.2969 0.2732 0.2095 0.1", + "Unpainted Wooden Door": "void plastic unpainted_wooden_door \n0\n0\n5 0.6352 0.4786 0.2751 0.0392 0.2", + "Wooden Door 2": "void plastic wooden_door_2 \n0\n0\n5 0.0403 0.0388 0.0406 0.0121 0.2", + "Light Door": "void plastic light_door \n0\n0\n5 0.3917 0.3876 0.3905 0.0122 0.2", + "Dark Door": "void plastic dark_door \n0\n0\n5 0.0867 0.0822 0.0807 0.0039 0.2", + "White Metal Door CH": "void plastic white_metal_door_ch \n0\n0\n5 0.874 0.8597 0.7739 0.0334 0.1" + }, + "Furniture": { + "Whiteboard Door": "void plastic whiteboard_door \n0\n0\n5 0.7749 0.8153 0.8299 0.0549 0.01", + "Wooden Bench": "void plastic wooden_bench \n0\n0\n5 0.1391 0.0816 0.046 0.003 0.2", + "Brushed Metal Joint Of Wooden Bench": "void plastic brushed_metal_joint_of_wooden_bench \n0\n0\n5 0.4843 0.4516 0.3897 0.1055 0.05", + "Porcelain White Sink": "void plastic porcelain_white_sink \n0\n0\n5 0.8045 0.8054 0.7846 0.043 0.05", + "White Cupboard Top Surface": "void plastic white_cupboard_top_surface \n0\n0\n5 0.8478 0.8553 0.8093 0.0127 0.2", + "White Cupboard Side Surface": "void plastic white_cupboard_side_surface \n0\n0\n5 0.8546 0.8632 0.8206 0.0135 0.2", + "Wooden Textured Table Top": "void plastic wooden_textured_table_top \n0\n0\n5 0.4628 0.3254 0.158 0.02 0.2", + "White Metal Table Frame": "void plastic white_metal_table_frame \n0\n0\n5 0.854 0.8258 0.7707 0.0148 0.1", + "Whiteboard Surface Moveable Panel": "void plastic whiteboard_surface_moveable_panel \n0\n0\n5 0.7504 0.7459 0.6929 0.052 0.1", + "Whiteboard": "void plastic whiteboard \n0\n0\n5 0.8691 0.8666 0.7705 0.0668 0.01", + "Metal Ledge Of Whiteboard": "void plastic metal_ledge_of_whiteboard \n0\n0\n5 0.5301 0.4972 0.4349 0.1177 0.05", + "Blackboard": "void plastic blackboard \n0\n0\n5 0.0388 0.0386 0.0388 0.0002 0.3", + "Wooden Frame Of Blackboard": "void plastic wooden_frame_of_blackboard \n0\n0\n5 0.4934 0.3356 0.1328 0.0161 0.2", + "Wood Table": "void plastic wood_table \n0\n0\n5 0.6471 0.4382 0.1787 0.0176 0.2", + "Grey Stainless Steel Table Leg": "void plastic grey_stainless_steel_table_leg \n0\n0\n5 0.3373 0.3335 0.3164 0.0218 0.05", + "Chair Cushion": "void plastic chair_cushion \n0\n0\n5 0.3184 0.1859 0.0807 0.0151 0.2", + "White Plastic Chair": "void plastic white_plastic_chair \n0\n0\n5 0.6891 0.6619 0.5061 0.0089 0.2", + "Hospital Table Top": "void plastic hospital_table_top \n0\n0\n5 0.519 0.32 0.1448 0.0116 0.2", + "Hospital Table Stand": "void plastic hospital_table_stand \n0\n0\n5 0.0863 0.0913 0.0879 0.0173 0.2", + "Blue Mattress": "void plastic blue_mattress \n0\n0\n5 0.2684 0.3845 0.6343 0.0011 0.2", + "Hospital Cabinet": "void plastic hospital_cabinet \n0\n0\n5 0.4531 0.4413 0.3826 0.0106 0.2", + "Bedsheets": "void plastic bedsheets \n0\n0\n5 0.6509 0.6497 0.8904 0.0067 0.2", + "Stainless Steel Sink": "void plastic stainless_steel_sink \n0\n0\n5 0.3937 0.3734 0.3281 0.0821 0.05", + "Faux Wood Desk": "void plastic faux_wood_desk \n0\n0\n5 0.6579 0.5451 0.3271 0.0427 0.1", + "Black Fabric Cubicle Partition": "void plastic black_fabric_cubicle_partition \n0\n0\n5 0.0615 0.0532 0.0503 0.0002 0.2", + "Silver Cublicle Partition Frame": "void plastic silver_cublicle_partition_frame \n0\n0\n5 0.6031 0.6085 0.5961 0.0676 0.05", + "Table Legs": "void plastic table_legs \n0\n0\n5 0.7255 0.7464 0.718 0.0151 0.1", + "White Board": "void plastic white_board \n0\n0\n5 0.7655 0.8035 0.8142 0.0606 0.01", + "Light Cupboard": "void plastic light_cupboard \n0\n0\n5 0.4675 0.4678 0.468 0.0236 0.2", + "Dark Cupboard": "void plastic dark_cupboard \n0\n0\n5 0.1024 0.1014 0.1064 0.0124 0.2", + "Specular Grey Metal Cabinet": "void plastic specular_grey_metal_cabinet \n0\n0\n5 0.5189 0.4825 0.4195 0.0235 0.05", + "White Laminate Desktop": "void plastic white_laminate_desktop \n0\n0\n5 0.8375 0.8263 0.8414 0.0291 0.1", + "Grey Cubicle Background Fabric": "void plastic grey_cubicle_background_fabric \n0\n0\n5 0.4444 0.4303 0.3969 0.0037 0.3", + "Metal Cabinet": "void plastic metal_cabinet \n0\n0\n5 0.7697 0.7623 0.7035 0.0384 0.05", + "Cubicle Wall Top Plastic": "void plastic cubicle_wall_top_plastic \n0\n0\n5 0.7148 0.6941 0.6193 0.0093 0.2", + "Blue Cubicle Fabric": "void plastic blue_cubicle_fabric \n0\n0\n5 0.1074 0.19 0.2788 0.0009 0.3", + "Teal Cubicle Fabric": "void plastic teal_cubicle_fabric \n0\n0\n5 0.051 0.1545 0.173 0.0006 0.3", + "Dark Blue Cubicle Fabric": "void plastic dark_blue_cubicle_fabric \n0\n0\n5 0.0465 0.1513 0.2219 0.0006 0.3", + "Purple Cubicle Fabric": "void plastic purple_cubicle_fabric \n0\n0\n5 0.0577 0.0389 0.1056 0.0003 0.3", + "Green Cubicle Fabric": "void plastic green_cubicle_fabric \n0\n0\n5 0.4028 0.4921 0.1524 0.0048 0.3", + "Green Fabric Cubicle Wall": "void plastic green_fabric_cubicle_wall \n0\n0\n5 0.4911 0.4633 0.1236 0.0031 0.3", + "Whiteboard Cubicle Wall": "void plastic whiteboard_cubicle_wall \n0\n0\n5 0.7893 0.7821 0.7999 0.0699 0.3", + "Faux Wood Desk Surface": "void plastic faux_wood_desk_surface \n0\n0\n5 0.6639 0.528 0.3227 0.0178 0.1", + "Grey Metal Desk Edge": "void plastic grey_metal_desk_edge \n0\n0\n5 0.5227 0.5392 0.5194 0.0406 0.1", + "White Metal Led Desk Lamp Arm": "void plastic white_metal_led_desk_lamp_arm \n0\n0\n5 0.7495 0.7287 0.7071 0.0223 0.1", + "Cubicle Backdrop": "void plastic cubicle_backdrop \n0\n0\n5 0.2502 0.2404 0.2451 0.0021 0.3", + "Green Rolling Cabinet": "void plastic green_rolling_cabinet \n0\n0\n5 0.0559 0.4009 0.0483 0.049 0.05", + "White Rolling Cabinet": "void plastic white_rolling_cabinet \n0\n0\n5 0.8521 0.8606 0.8395 0.0256 0.05", + "Wooden Cabinet": "void plastic wooden_cabinet \n0\n0\n5 0.2642 0.1007 0.0317 0.0236 0.2", + "Wood Laminate Table Top": "void plastic wood_laminate_table_top \n0\n0\n5 0.6112 0.4779 0.3081 0.0141 0.1", + "Grey Aluminum Table Legs": "void plastic grey_aluminum_table_legs \n0\n0\n5 0.2805 0.2876 0.2895 0.0552 0.05", + "Grey Aluminum Desk Divider Frame": "void plastic grey_aluminum_desk_divider_frame \n0\n0\n5 0.4602 0.4714 0.4759 0.0468 0.05", + "Metal Filing Cabinet": "void plastic metal_filing_cabinet \n0\n0\n5 0.5214 0.4866 0.4259 0.0328 0.1", + "Faux Wood Table": "void plastic faux_wood_table \n0\n0\n5 0.5721 0.5378 0.4678 0.0258 0.1", + "Black Chair": "void plastic black_chair \n0\n0\n5 0.0493 0.0739 0.1097 0.006 0.3", + "Orange Couch": "void plastic orange_couch \n0\n0\n5 0.5397 0.1364 0.0359 0.0176 0.3", + "Faux Wood Shelves": "void plastic faux_wood_shelves \n0\n0\n5 0.6261 0.5171 0.3078 0.0291 0.1", + "Grey Cubicle Fabric": "void plastic grey_cubicle_fabric \n0\n0\n5 0.1556 0.1633 0.1683 0.0103 0.3", + "Faux Wood Desktop": "void plastic faux_wood_desktop \n0\n0\n5 0.6554 0.5403 0.3164 0.0277 0.1", + "White Marker Board": "void plastic white_marker_board \n0\n0\n5 0.8115 0.8025 0.8554 0.0739 0.01", + "Grey Filing Cabinet": "void plastic grey_filing_cabinet \n0\n0\n5 0.4115 0.4245 0.3805 0.0237 0.1", + "Dark Faux Wood Cabinets": "void plastic dark_faux_wood_cabinets \n0\n0\n5 0.6205 0.3541 0.1668 0.0228 0.2", + "Beige Cubicle Partition Fabric": "void plastic beige_cubicle_partition_fabric \n0\n0\n5 0.626 0.5801 0.474 0.0097 0.3", + "White Shelf": "void plastic white_shelf \n0\n0\n5 0.8536 0.8535 0.8155 0.0228 0.1", + "Desk Background Laminate Wood": "void plastic desk_background_laminate_wood \n0\n0\n5 0.5362 0.4358 0.302 0.0073 0.2", + "Desk Background Yellow Fabric": "void plastic desk_background_yellow_fabric \n0\n0\n5 0.5231 0.3099 0.023 0.0048 0.2", + "Laminate Desktop": "void plastic laminate_desktop \n0\n0\n5 0.5707 0.454 0.2896 0.0051 0.2", + "White Table Top": "void plastic white_table_top \n0\n0\n5 0.8622 0.8736 0.8377 0.0134 0.2", + "Brushed Metal Table Leg": "void plastic brushed_metal_table_leg \n0\n0\n5 0.3825 0.3691 0.3283 0.2424 0.05", + "Cubicle Partition Fabric": "void plastic cubicle_partition_fabric \n0\n0\n5 0.5541 0.3908 0.2619 0.0039 0.3", + "Cubicle Partition Laminated Wood": "void plastic cubicle_partition_laminated_wood \n0\n0\n5 0.5594 0.4619 0.3187 0.008 0.2", + "Grey Couch": "void plastic grey_couch \n0\n0\n5 0.2709 0.2785 0.2973 0 0.3", + "Dark Brown Cupboard": "void plastic dark_brown_cupboard \n0\n0\n5 0.0805 0.0788 0.0801 0.0035 0.2", + "Grey Fabric Pin Board": "void plastic grey_fabric_pin_board \n0\n0\n5 0.2875 0.2913 0.2942 0.0054 0.2", + "Dark Brown Cubicle Partition Cladding": "void plastic dark_brown_cubicle_partition_cladding \n0\n0\n5 0.0748 0.0727 0.0732 0.0035 0.3", + "Outside Wooden Bench": "void plastic outside_wooden_bench \n0\n0\n5 0.1351 0.099 0.0749 0.0019 0.2", + "Laminate Brown Table": "void plastic laminate_brown_table \n0\n0\n5 0.204 0.1606 0.1216 0.0076 0.2", + "Lamintate Dark Brown Countertop": "void plastic lamintate_dark_brown_countertop \n0\n0\n5 0.1065 0.103 0.1034 0.0088 0.2", + "White TV Console": "void plastic white_tv_console \n0\n0\n5 0.7713 0.7753 0.7714 0.0565 0.1", + "Dining Table": "void plastic dining_table \n0\n0\n5 0.7595 0.7454 0.6765 0.0139 0.2", + "White Leather Chair": "void plastic white_leather_chair \n0\n0\n5 0.6788 0.6474 0.5864 0.0077 0.2", + "White Dressing Table": "void plastic white_dressing_table \n0\n0\n5 0.8397 0.8231 0.747 0.0208 0.2", + "Black Leather Bed Headboard": "void plastic black_leather_bed_headboard \n0\n0\n5 0.039 0.0398 0.0413 0.0034 0.2", + "Red Laminate Cabinet Door": "void plastic red_laminate_cabinet_door \n0\n0\n5 0.4935 0.0502 0.0442 0.0063 0.2", + "Black Countertop": "void plastic black_countertop \n0\n0\n5 0.0155 0.0154 0.0154 0.0267 0.1", + "White Laminate Cabinet Door": "void plastic white_laminate_cabinet_door \n0\n0\n5 0.8128 0.8258 0.794 0.0186 0.1", + "Wooden Table and Chair": "void plastic wooden_table_and_chair \n0\n0\n5 0.1514 0.0427 0.0188 0.0224 0.2", + "Black TV Console": "void plastic black_tv_console \n0\n0\n5 0.0279 0.0291 0.0311 0.0146 0.2", + "Light Brown Cabinet": "void plastic light_brown_cabinet \n0\n0\n5 0.6001 0.5319 0.3905 0.0138 0.2", + "Wooden Wardrobe": "void plastic wooden_wardrobe \n0\n0\n5 0.4777 0.2681 0.074 0.0193 0.2", + "Wooden Drawers": "void plastic wooden_drawers \n0\n0\n5 0.5821 0.3498 0.1371 0.0015 0.2", + "White Bookshelf": "void plastic white_bookshelf \n0\n0\n5 0.8179 0.7941 0.6952 0.0086 0.2", + "Steel Grey Cabinet": "void plastic steel_grey_cabinet \n0\n0\n5 0.1051 0.1036 0.1091 0.011 0.2", + "Dark Brown Cabinet": "void plastic dark_brown_cabinet \n0\n0\n5 0.2049 0.1531 0.1272 0.0046 0.2", + "Stone Countertop": "void plastic stone_countertop \n0\n0\n5 0.0532 0.043 0.0329 0.0294 0.2", + "Brown Tile Counter": "void plastic brown_tile_counter \n0\n0\n5 0.2835 0.2261 0.1795 0.0163 0.2", + "Brown Cabinet Door": "void plastic brown_cabinet_door \n0\n0\n5 0.2504 0.089 0.0484 0.0113 0.2", + "Refrigerator": "void plastic refrigerator \n0\n0\n5 0.4152 0.4096 0.4156 0.0613 0.1", + "Purple Couch": "void plastic purple_couch \n0\n0\n5 0.1757 0.0903 0.0679 0.0007 0.2", + "Dark Brown Wooden Table": "void plastic dark_brown_wooden_table \n0\n0\n5 0.0398 0.0369 0.0359 0.0102 0.2", + "Yellow Wooden Cabinet": "void plastic yellow_wooden_cabinet \n0\n0\n5 0.6064 0.4243 0.165 0.0239 0.2", + "Grey Stone Countertop": "void plastic grey_stone_countertop \n0\n0\n5 0.2274 0.1904 0.133 0.0236 0.2", + "Wardrobe": "void plastic wardrobe \n0\n0\n5 0.6271 0.4549 0.2912 0.0433 0.2", + "White Clothes Cabinet": "void plastic white_clothes_cabinet \n0\n0\n5 0.8216 0.816 0.7281 0.0236 0.2", + "White Table": "void plastic white_table \n0\n0\n5 0.8617 0.8596 0.7869 0.0116 0.2", + "Grey Sofa Fabric": "void plastic grey_sofa_fabric \n0\n0\n5 0.0603 0.058 0.0554 0 0.3", + "Black Laminate Table": "void plastic black_laminate_table \n0\n0\n5 0.0342 0.0327 0.0331 0.015 0.2", + "Green Cabinet": "void plastic green_cabinet \n0\n0\n5 0.4207 0.6078 0.5249 0.0334 0.2", + "Blue Countertop": "void plastic blue_countertop \n0\n0\n5 0.2551 0.2988 0.3366 0.0071 0.2", + "Red Countertop": "void plastic red_countertop \n0\n0\n5 0.2764 0.1597 0.1223 0.0093 0.2", + "White Laminate Cabinet": "void plastic white_laminate_cabinet \n0\n0\n5 0.8497 0.8331 0.7312 0.0251 0.2", + "Wooden Bed Frame": "void plastic wooden_bed_frame \n0\n0\n5 0.4799 0.2789 0.1002 0.0029 0.2", + "White Laminate Cabinet 2": "void plastic white_laminate_cabinet_2 \n0\n0\n5 0.8477 0.833 0.7367 0.0294 0.2", + "White Ceramic Sink": "void plastic white_ceramic_sink \n0\n0\n5 0.8807 0.8869 0.8547 0.0151 0.1", + "Grey Metallic Cabinet Door": "void plastic grey_metallic_cabinet_door \n0\n0\n5 0.3158 0.2996 0.2655 0.0603 0.05", + "Kitchen Drawer": "void plastic kitchen_drawer \n0\n0\n5 0.0005 0.0008 0.0003 0.06 0.2", + "White Desk": "void plastic white_desk \n0\n0\n5 0.8655 0.8771 0.84 0.0224 0.1", + "Glossy Black Countertop": "void plastic glossy_black_countertop \n0\n0\n5 0.0214 0.0221 0.0234 0.022 0.05", + "Couch": "void plastic couch \n0\n0\n5 0.0382 0.0392 0.0406 0.0067 0.3", + "Black Sofa": "void plastic black_sofa \n0\n0\n5 0.0467 0.0416 0.0409 0.0126 0.3", + "Brown Leather Cupboard": "void plastic brown_leather_cupboard \n0\n0\n5 0.1621 0.1378 0.1271 0.0103 0.2", + "White Glossy Shelf": "void plastic white_glossy_shelf \n0\n0\n5 0.8221 0.8375 0.8056 0.0623 0.05", + "Brown Cabinet": "void plastic brown_cabinet \n0\n0\n5 0.2457 0.1618 0.1054 0.0014 0.2", + "Dark Counter Top": "void plastic dark_counter_top \n0\n0\n5 0.0225 0.0217 0.0209 0.0303 0.2", + "White Cabinet": "void plastic white_cabinet \n0\n0\n5 0.8 0.8012 0.7308 0.0165 0.2", + "Plum Bed": "void plastic plum_bed \n0\n0\n5 0.1308 0.053 0.053 0.0027 0.3", + "Wardrobe Door": "void plastic wardrobe_door \n0\n0\n5 0.1533 0.0708 0.071 0.015 0.2", + "Black Leather Sofa": "void plastic black_leather_sofa \n0\n0\n5 0.0337 0.0345 0.0355 0.0111 0.2", + "Brown Laminate TV Console": "void plastic brown_laminate_tv_console \n0\n0\n5 0.0636 0.0394 0.0348 0.019 0.2", + "Brown Cupboard": "void plastic brown_cupboard \n0\n0\n5 0.0345 0.0297 0.0296 0.0227 0.2", + "Brown Bed Headboard": "void plastic brown_bed_headboard \n0\n0\n5 0.0384 0.0397 0.0418 0.0065 0.2", + "Laminate Wardrobe": "void plastic laminate_wardrobe \n0\n0\n5 0.4005 0.3953 0.3319 0.0059 0.2", + "Dresser": "void plastic dresser \n0\n0\n5 0.763 0.7298 0.6082 0.0302 0.1", + "Countertop": "void plastic countertop \n0\n0\n5 0.746 0.6865 0.5211 0.0192 0.2", + "Light Brown Laminate Cabinet": "void plastic light_brown_laminate_cabinet \n0\n0\n5 0.675 0.6137 0.4991 0.0137 0.2", + "Brown Laminate Cabinet": "void plastic brown_laminate_cabinet \n0\n0\n5 0.5893 0.3827 0.2018 0 0.2", + "Sink": "void plastic sink \n0\n0\n5 0.561 0.4331 0.2769 0.0079 0.2", + "Dining Table Sheet": "void plastic dining_table_sheet \n0\n0\n5 0.3942 0.2903 0.2501 0.0094 0.2", + "Dark Brown Wooden Shelf": "void plastic dark_brown_wooden_shelf \n0\n0\n5 0.0323 0.0191 0.0183 0.027 0.2", + "Dark Brown Leather Couch": "void plastic dark_brown_leather_couch \n0\n0\n5 0.0474 0.0428 0.0428 0.0052 0.2", + "Black Leather Couch": "void plastic black_leather_couch \n0\n0\n5 0.0411 0.0413 0.0425 0.0035 0.2", + "Blue Ceramic Tile Counter": "void plastic blue_ceramic_tile_counter \n0\n0\n5 0.2197 0.2705 0.3036 0.0276 0.1", + "Black Ceramic Tile Counter": "void plastic black_ceramic_tile_counter \n0\n0\n5 0.0927 0.081 0.0605 0.019 0.1", + "Black Wooden Wardrobe": "void plastic black_wooden_wardrobe \n0\n0\n5 0.0402 0.0349 0.034 0.0181 0.2", + "Blue Childrens Cabinet": "void plastic blue_childrens_cabinet \n0\n0\n5 0.0252 0.0833 0.1805 0.0089 0.2", + "Red Childrens Cabinet": "void plastic red_childrens_cabinet \n0\n0\n5 0.3256 0.0216 0.0399 0.0147 0.2", + "Yellow Childrens Cabinet": "void plastic yellow_childrens_cabinet \n0\n0\n5 0.7025 0.3541 0 0.0181 0.2", + "White Childrens Cabinet": "void plastic white_childrens_cabinet \n0\n0\n5 0.7452 0.7233 0.6273 0.0204 0.2", + "Wooden Builtin Cabinet": "void plastic wooden_builtin_cabinet \n0\n0\n5 0.6309 0.5411 0.4148 0.0033 0.2", + "Laminate TV Shelf": "void plastic laminate_tv_shelf \n0\n0\n5 0.7518 0.7047 0.5597 0.0642 0.1", + "Cabinet": "void plastic cabinet \n0\n0\n5 0.5784 0.5691 0.5315 0.0075 0.2", + "Laminate Countertop": "void plastic laminate_countertop \n0\n0\n5 0.5759 0.5828 0.5172 0.0243 0.2", + "Light Brown Glossy Wardrobe": "void plastic light_brown_glossy_wardrobe \n0\n0\n5 0.7273 0.6599 0.5477 0.0039 0.05", + "Dark Brown Glossy Wardrobe": "void plastic dark_brown_glossy_wardrobe \n0\n0\n5 0.1824 0.1028 0.0547 0.0588 0.05", + "Brown Recliner": "void plastic brown_recliner \n0\n0\n5 0.0607 0.0549 0.0518 0.0021 0.2", + "White Ceramic Table": "void plastic white_ceramic_table \n0\n0\n5 0.7444 0.7303 0.6655 0.0214 0.2", + "White Wooden Cabinet": "void plastic white_wooden_cabinet \n0\n0\n5 0.859 0.8263 0.7509 0.03 0.2", + "Darkbrown Drawer": "void plastic darkbrown_drawer \n0\n0\n5 0.0573 0.0592 0.0587 0.0146 0.2", + "Glosssy White Drawer": "void plastic glosssy_white_drawer \n0\n0\n5 0.783 0.8058 0.7998 0.066 0.2", + "Wooden Brown Countertop": "void plastic wooden_brown_countertop \n0\n0\n5 0.2104 0.1798 0.1356 0.0158 0.2", + "Black Desktop": "void plastic black_desktop \n0\n0\n5 0.0395 0.0394 0.0405 0.0017 0.2", + "White Drawer": "void plastic white_drawer \n0\n0\n5 0.8541 0.838 0.7297 0.0033 0.2", + "Laminate TV Cabinet": "void plastic laminate_tv_cabinet \n0\n0\n5 0.3237 0.2396 0.1613 0.0011 0.2", + "White Painted Wooden Cabinet": "void plastic white_painted_wooden_cabinet \n0\n0\n5 0.8229 0.8008 0.6812 0.0521 0.2", + "Ceramic Black Stovetop": "void plastic ceramic_black_stovetop \n0\n0\n5 0.0307 0.0284 0.0265 0.0248 0.2", + "Beige Sofa Fabric": "void plastic beige_sofa_fabric \n0\n0\n5 0.5912 0.5515 0.5085 0.0044 0.2", + "Wooden Shelf": "void plastic wooden_shelf \n0\n0\n5 0.1888 0.1181 0.0771 0.0061 0.2", + "Wooden Dining Table": "void plastic wooden_dining_table \n0\n0\n5 0.2697 0.0894 0.0166 0.0316 0.2", + "Brown Countertop": "void plastic brown_countertop \n0\n0\n5 0.0813 0.0526 0.0307 0.0205 0.2", + "Beige Cabinet": "void plastic beige_cabinet \n0\n0\n5 0.7329 0.6313 0.4506 0.0173 0.2", + "Wooden Dresser": "void plastic wooden_dresser \n0\n0\n5 0.4339 0.2126 0.0573 0.0118 0.2", + "Faux Wood Cabinet": "void plastic faux_wood_cabinet \n0\n0\n5 0.6384 0.487 0.3397 0.0371 0.1", + "Counter Top": "void plastic counter_top \n0\n0\n5 0.8885 0.8586 0.6812 0.0054 0.2", + "Wood Laminate TV Shelf": "void plastic wood_laminate_tv_shelf \n0\n0\n5 0.4087 0.2208 0.0615 0.0151 0.2", + "Gold Cushion Chair": "void plastic gold_cushion_chair \n0\n0\n5 0.6668 0.5214 0.325 0.0007 0.3", + "Dark Brown Furniture": "void plastic dark_brown_furniture \n0\n0\n5 0.0376 0.0062 0.008 0.0373 0.2", + "White Countertop": "void plastic white_countertop \n0\n0\n5 0.8514 0.8454 0.8085 0.0211 0.2", + "White Glossy Laminate Cabinet": "void plastic white_glossy_laminate_cabinet \n0\n0\n5 0.8099 0.7918 0.734 0.0687 0.05", + "White Cabinet Side": "void plastic white_cabinet_side \n0\n0\n5 0.8198 0.8243 0.7635 0.0184 0.2", + "Brown TV Console": "void plastic brown_tv_console \n0\n0\n5 0.053 0.0319 0.0301 0.0128 0.2", + "Dark Stone Countertop": "void plastic dark_stone_countertop \n0\n0\n5 0.0108 0.0103 0.009 0.0495 0.1", + "Brown Wooden Cabinet": "void plastic brown_wooden_cabinet \n0\n0\n5 0.4652 0.2456 0.0899 0.0036 0.2", + "Dark Laminate Cabinet": "void plastic dark_laminate_cabinet \n0\n0\n5 0.0632 0.0556 0.0527 0.0075 0.2", + "Table Surface E14 548": "void plastic table_surface_e14_548 \n0\n0\n5 0.8508 0.8443 0.7888 0.0171 0.1", + "Table Metal Trim E14 548": "void plastic table_metal_trim_e14_548 \n0\n0\n5 0.4351 0.4453 0.4468 0.0653 0.1", + "Monitor Plastic E14 526": "void plastic monitor_plastic_e14_526 \n0\n0\n5 0.0583 0.0626 0.065 0.0051 0.1", + "Wood Table E14 526": "void plastic wood_table_e14_526 \n0\n0\n5 0.5103 0.3476 0.1662 0.0051 0.1", + "Wood Table Metal Leg E14 526": "void plastic wood_table_metal_leg_e14_526 \n0\n0\n5 0.4757 0.457 0.4196 0.0872 0.1", + "Purple Couch E14 526": "void plastic purple_couch_e14_526 \n0\n0\n5 0.0667 0.0391 0.0647 0 0.2", + "Table E14 526": "void plastic table_e14_526 \n0\n0\n5 0.8202 0.7908 0.7159 0.0148 0.1", + "Table Leg E14 526": "void plastic table_leg_e14_526 \n0\n0\n5 0.3136 0.3212 0.3235 0.0518 0.01", + "Table Wheel E14 526": "void plastic table_wheel_e14_526 \n0\n0\n5 0.0459 0.0466 0.0485 0.0028 0.1", + "Tackboard 7 301A": "void plastic tackboard_7_301a \n0\n0\n5 0.7854 0.7461 0.6215 0.0061 0.3", + "Tabletop 7 301A": "void plastic tabletop_7_301a \n0\n0\n5 0.8383 0.8228 0.7803 0.0181 0.1", + "Table Leg 7 301A": "void plastic table_leg_7_301a \n0\n0\n5 0.0307 0.0317 0.0329 0.0138 0.05", + "Table Bottom Edge 7 301A": "void plastic table_bottom_edge_7_301a \n0\n0\n5 0.463 0.2925 0.1063 0.0197 0.2", + "Table Bottom Center 7 301A": "void plastic table_bottom_center_7_301a \n0\n0\n5 0.1924 0.1166 0.0704 0.0011 0.2", + "Radiator 7 301A": "void plastic radiator_7_301a \n0\n0\n5 0.7717 0.73 0.6006 0.0052 0.1", + "Monitor Black Plastic 7 301A": "void plastic monitor_black_plastic_7_301a \n0\n0\n5 0.0585 0.059 0.0681 0.0098 0.1", + "Monitor Silver Plastic 7 301A": "void plastic monitor_silver_plastic_7_301a \n0\n0\n5 0.5278 0.5337 0.5139 0.0486 0.1", + "Wood Church Pew": "void plastic wood_church_pew \n0\n0\n5 0.2 0.1069 0.0282 0.021 0.2", + "Plastic Chair Arm": "void plastic plastic_chair_arm \n0\n0\n5 0.0427 0.0447 0.0485 0.0077 0.2", + "White Bench": "void plastic white_bench \n0\n0\n5 0.836 0.8491 0.8079 0.0124 0.2", + "Wood Bench 2": "void plastic wood_bench_2 \n0\n0\n5 0.2755 0.1581 0.0606 0.0092 0.2", + "Black Table": "void plastic black_table \n0\n0\n5 0.0343 0.0351 0.0366 0.0081 0.2", + "Bench": "void plastic bench \n0\n0\n5 0.7106 0.5474 0.3257 0.0237 0.2", + "White Stool": "void plastic white_stool \n0\n0\n5 0.7257 0.6272 0.4289 0.0231 0.2", + "Bookshelf": "void plastic bookshelf \n0\n0\n5 0.6572 0.4652 0.2344 0.015 0.2", + "Fabric Chair": "void plastic fabric_chair \n0\n0\n5 0.0511 0.0501 0.0531 0 0.2", + "Wood Table 2": "void plastic wood_table_2 \n0\n0\n5 0.425 0.307 0.1607 0.0011 0.2", + "Wood Bench 3": "void plastic wood_bench_3 \n0\n0\n5 0.3373 0.2196 0.0994 0.0012 0.2", + "Laminated Wooden Table": "void plastic laminated_wooden_table \n0\n0\n5 0.2862 0.1659 0.0458 0.041 0.2", + "White Chair": "void plastic white_chair \n0\n0\n5 0.8794 0.8722 0.7928 0.0076 0.2", + "Padded Chair": "void plastic padded_chair \n0\n0\n5 0.0914 0.092 0.0888 0.003 0.2", + "White Cabinet Top": "void plastic white_cabinet_top \n0\n0\n5 0.8442 0.8488 0.8026 0.0229 0.1", + "Table Top": "void plastic table_top \n0\n0\n5 0.3605 0.1814 0.0656 0.0074 0.2", + "Cabinet Top": "void plastic cabinet_top \n0\n0\n5 0.8553 0.8614 0.8141 0.0105 0.3", + "Cabinet Door": "void plastic cabinet_door \n0\n0\n5 0.8525 0.8597 0.8151 0.009 0.3", + "White Board 1": "void plastic white_board_1 \n0\n0\n5 0.8555 0.8501 0.7593 0.0729 0.01", + "Table Leg": "void plastic table_leg \n0\n0\n5 0.3343 0.3487 0.3298 0.0102 0.1", + "Wooden Table Top": "void plastic wooden_table_top \n0\n0\n5 0.6824 0.506 0.2227 0.0055 0.2", + "Grey Cubicle Fabric Partition": "void plastic grey_cubicle_fabric_partition \n0\n0\n5 0.3606 0.3692 0.3536 0 0", + "Dark Wood Table Top": "void plastic dark_wood_table_top \n0\n0\n5 0.3572 0.1749 0.0692 0.0046 0.3", + "Gray Table": "void plastic gray_table \n0\n0\n5 0.4346 0.4406 0.4362 0.0251 0.1", + "White Long Table": "void plastic white_long_table \n0\n0\n5 0.8444 0.8366 0.7641 0.03 0.1", + "White Square Table": "void plastic white_square_table \n0\n0\n5 0.864 0.8636 0.792 0.012 0.2", + "Cupboard": "void plastic cupboard \n0\n0\n5 0.8629 0.8749 0.8405 0.0136 0.2", + "Dark Grey Sofa": "void plastic dark_grey_sofa \n0\n0\n5 0.0425 0.0413 0.0466 0 0", + "Yellow Workstation Desk": "void plastic yellow_workstation_desk \n0\n0\n5 0.6708 0.5279 0.3258 0.0163 0.2", + "Black Monitor Plastic": "void plastic black_monitor_plastic \n0\n0\n5 0.0493 0.0497 0.0518 0.0036 0.3", + "Orange Wooden Table": "void plastic orange_wooden_table \n0\n0\n5 0.3146 0.2375 0.1541 0.0082 0.3", + "Blue Table": "void plastic blue_table \n0\n0\n5 0.8234 0.7875 0.651 0.0069 0.3", + "Black Computer Case CH": "void plastic black_computer_case_ch \n0\n0\n5 0.0456 0.0472 0.0503 0.0064 0.3", + "Black Computer Case NL": "void plastic black_computer_case_nl \n0\n0\n5 0.035 0.0357 0.0369 0.0138 0.2", + "Black Table Leg CH": "void plastic black_table_leg_ch \n0\n0\n5 0.0722 0.0656 0.0702 0.0358 0.1", + "Black Table Leg NL": "void plastic black_table_leg_nl \n0\n0\n5 0.0158 0.0163 0.0166 0.0329 0.1", + "Grey Computer Case NL": "void plastic grey_computer_case_nl \n0\n0\n5 0.6304 0.6398 0.6393 0.065 0.3", + "Grey Table Top CH": "void plastic grey_table_top_ch \n0\n0\n5 0.5617 0.5515 0.5101 0.0192 0.2", + "Grey Table Top NL": "void plastic grey_table_top_nl \n0\n0\n5 0.5237 0.5252 0.4702 0.0183 0.2" + }, + "Exterior Floor": { + "Grey Sidewalk Metal Clad": "void plastic grey_sidewalk_metal_clad \n0\n0\n5 0.104 0.1119 0.1243 0.0143 0.2", + "Exterior White Painted Concrete Slab": "void plastic exterior_white_painted_concrete_slab \n0\n0\n5 0.818 0.826 0.8179 0.0039 0.2", + "New Black Asphalt": "void plastic new_black_asphalt \n0\n0\n5 0.0429 0.0414 0.0401 0 0.3", + "Old Black Asphalt": "void plastic old_black_asphalt \n0\n0\n5 0.1228 0.1085 0.081 0.0152 0.3", + "New White Street Paint": "void plastic new_white_street_paint \n0\n0\n5 0.6606 0.6418 0.5089 0.0055 0.2", + "Old White Street Paint": "void plastic old_white_street_paint \n0\n0\n5 0.426 0.3863 0.2932 0 0.2", + "Old Yellow Streed Paint": "void plastic old_yellow_streed_paint \n0\n0\n5 0.5054 0.2872 0.0532 0 0.2", + "Concrete Street Curb": "void plastic concrete_street_curb \n0\n0\n5 0.1662 0.152 0.1158 0 0.3", + "Soil": "void plastic soil \n0\n0\n5 0.0419 0.0292 0.0208 0 0", + "Asphalt": "void plastic asphalt \n0\n0\n5 0.1803 0.1613 0.1305 0 0.3", + "Sand": "void plastic sand \n0\n0\n5 0.4352 0.3412 0.1969 0 0", + "Light Gravel Sidewalk": "void plastic light_gravel_sidewalk \n0\n0\n5 0.2745 0.2543 0.2193 0.0019 0.3", + "Wood Plank Walkway": "void plastic wood_plank_walkway \n0\n0\n5 0.1162 0.0958 0.0841 0.0011 0.3", + "Dark Gravel Sidewalk": "void plastic dark_gravel_sidewalk \n0\n0\n5 0.1424 0.1361 0.1167 0.0004 0.3", + "Road Asphalt": "void plastic road_asphalt \n0\n0\n5 0.1086 0.0998 0.085 0.0004 0.3", + "Elevated Concrete Walkway": "void plastic elevated_concrete_walkway \n0\n0\n5 0.0915 0.0869 0.075 0.0003 0.3", + "Grey Stone Exterior Floor": "void plastic grey_stone_exterior_floor \n0\n0\n5 0.2579 0.2518 0.2226 0.0021 0.3", + "Grey Stone Exterior Floor Tile": "void plastic grey_stone_exterior_floor_tile \n0\n0\n5 0.2169 0.213 0.19 0.0019 0.3", + "Exterior Concrete Floor": "void plastic exterior_concrete_floor \n0\n0\n5 0.3148 0.3114 0.2962 0.0018 0.3", + "Exterior Concrete Floor 2": "void plastic exterior_concrete_floor_2 \n0\n0\n5 0.2697 0.253 0.2161 0 0.2", + "Exterior Wooden Balcony Floor": "void plastic exterior_wooden_balcony_floor \n0\n0\n5 0.3907 0.2493 0.1189 0.0233 0.2", + "Media Lab Granite Steps": "void plastic media_lab_granite_steps \n0\n0\n5 0.1262 0.1226 0.1126 0.0036 0.1", + "100 Memorial Dr Concrete": "void plastic 100_memorial_dr_concrete \n0\n0\n5 0.2388 0.1973 0.1352 0.0008 0.2", + "100 Memorial Dr Brick": "void plastic 100_memorial_dr_brick \n0\n0\n5 0.1576 0.0968 0.0777 0.0002 0.2", + "Gravel": "void plastic gravel \n0\n0\n5 0.0571 0.0574 0.0492 0.0007 0.3", + "Concrete Curb": "void plastic concrete_curb \n0\n0\n5 0.1854 0.1598 0.1117 0.0005 0.1", + "Concrete Pavement": "void plastic concrete_pavement \n0\n0\n5 0.2834 0.2409 0.1662 0.0006 0.1", + "Grey Concrete Exterior Floor ": "void plastic grey_concrete_exterior_floor_ \n0\n0\n5 0.4275 0.3936 0.3278 0.0024 0.3", + "Concrete Exterior Floor": "void plastic concrete_exterior_floor \n0\n0\n5 0.2026 0.177 0.1373 0.0002 0.3", + "Red Brick Sidewalk": "void plastic red_brick_sidewalk \n0\n0\n5 0.2156 0.0932 0.0628 0.0004 0.3", + "Light Concrete Pavement": "void plastic light_concrete_pavement \n0\n0\n5 0.385 0.3394 0.2574 0 0.3", + "Concrete Pavement ": "void plastic concrete_pavement_ \n0\n0\n5 0.4191 0.3652 0.2704 0 0.3", + "Sandy Concrete Pavement ": "void plastic sandy_concrete_pavement_ \n0\n0\n5 0.1373 0.1226 0.0927 0 0.3", + "Concrete Block Floor": "void plastic concrete_block_floor \n0\n0\n5 0.1105 0.1011 0.0867 0 0.3", + "Asphalt Road ": "void plastic asphalt_road_ \n0\n0\n5 0.1251 0.1146 0.096 0 0.3", + "Red Stone Exterior Floor Tiles": "void plastic red_stone_exterior_floor_tiles \n0\n0\n5 0.3642 0.2658 0.1645 0.0012 0.2", + "Blue Ceramic Exterior Floor Tiles": "void plastic blue_ceramic_exterior_floor_tiles \n0\n0\n5 0.1123 0.1328 0.1515 0.0065 0.2", + "Concrete Grey Exterior Floor Tiles": "void plastic concrete_grey_exterior_floor_tiles \n0\n0\n5 0.192 0.1801 0.1548 0.0027 0.2", + "Fake Grass Field Astroturf": "void plastic fake_grass_field_astroturf \n0\n0\n5 0.0543 0.0612 0.0398 0 0.2", + "Road Paver Blocks": "void plastic road_paver_blocks \n0\n0\n5 0.1638 0.1453 0.1183 0 0.3", + "Asphalt Road": "void plastic asphalt_road \n0\n0\n5 0.137 0.1195 0.0923 0 0.3", + "Parking Asphalt": "void plastic parking_asphalt \n0\n0\n5 0.1056 0.0945 0.0795 0 0.3", + "Parking Asphalt 2": "void plastic parking_asphalt_2 \n0\n0\n5 0.2565 0.2354 0.1961 0.0001 0.3", + "Asphalt Road 2": "void plastic asphalt_road_2 \n0\n0\n5 0.1683 0.1549 0.1315 0 0.3", + "Asphalt Road 3": "void plastic asphalt_road_3 \n0\n0\n5 0.1892 0.175 0.1495 0 0.3", + "Asphalt Road 4": "void plastic asphalt_road_4 \n0\n0\n5 0.1412 0.1312 0.1126 0 0.3", + "Concrete Sidewalk": "void plastic concrete_sidewalk \n0\n0\n5 0.4337 0.3855 0.2897 0.0007 0.3", + "Concrete Sidewalk 2": "void plastic concrete_sidewalk_2 \n0\n0\n5 0.1752 0.1543 0.1216 0.0002 0.3", + "Brick Paver": "void plastic brick_paver \n0\n0\n5 0.1115 0.1013 0.0849 0 0.3", + "Concrete Sidewalk 3": "void plastic concrete_sidewalk_3 \n0\n0\n5 0.1831 0.1601 0.1267 0.0011 0.3", + "Brick Sidewalk": "void plastic brick_sidewalk \n0\n0\n5 0.1604 0.1277 0.0986 0 0.3", + "Concrete Sidewalk 4": "void plastic concrete_sidewalk_4 \n0\n0\n5 0.2174 0.1881 0.144 0 0.3", + "Dirty Asphalt": "void plastic dirty_asphalt \n0\n0\n5 0.0935 0.0831 0.0667 0 0.3", + "Blue Painted Asphalt": "void plastic blue_painted_asphalt \n0\n0\n5 0.0493 0.11 0.2108 0.0001 0.3", + "Concrete Sidewalk 5": "void plastic concrete_sidewalk_5 \n0\n0\n5 0.2392 0.2042 0.1533 0 0.3", + "Brick Paver 2": "void plastic brick_paver_2 \n0\n0\n5 0.1689 0.1211 0.0929 0.0063 0.3", + "Exterior Hallway Floor": "void plastic exterior_hallway_floor \n0\n0\n5 0.2525 0.2349 0.1977 0.0017 0.3", + "Outdoor Floor Surface": "void plastic outdoor_floor_surface \n0\n0\n5 0.3202 0.2899 0.2212 0 0" + }, + "Others": { + "Light Grey Plastic Railing": "void plastic light_grey_plastic_railing \n0\n0\n5 0.2537 0.2499 0.2296 0.0082 0.2", + "Railing Curb": "void plastic railing_curb \n0\n0\n5 0.108 0.115 0.1248 0.0063 0.2", + "Steel Railing": "void plastic steel_railing \n0\n0\n5 0.3975 0.356 0.2797 0.0949 0.05", + "Plastic Sideboard": "void plastic plastic_sideboard \n0\n0\n5 0.8637 0.8765 0.8392 0.0383 0.1", + "Metal Railing": "void plastic metal_railing \n0\n0\n5 0.3185 0.2855 0.2263 0.1516 0.05", + "White Electrical Chase": "void plastic white_electrical_chase \n0\n0\n5 0.8297 0.8131 0.7266 0.0179 0.2", + "Metal Reflector On Ceiling": "void plastic metal_reflector_on_ceiling \n0\n0\n5 0.2071 0.2291 0.2466 0.4482 0.01", + "Light Grey Electrical Chase": "void plastic light_grey_electrical_chase \n0\n0\n5 0.5006 0.4936 0.4685 0.0051 0.2", + "Aluminium White Handrail": "void plastic aluminium_white_handrail \n0\n0\n5 0.7579 0.7865 0.7811 0.0172 0.2", + "Green Foam": "void plastic green_foam \n0\n0\n5 0.3984 0.6425 0.6724 0.0368 0.2", + "White Styrofoam": "void plastic white_styrofoam \n0\n0\n5 0.8393 0.8384 0.841 0.0054 0.2", + "Bristol Board": "void plastic bristol_board \n0\n0\n5 0.9114 0.896 0.9701 0.0074 0.2", + "Interior Light Shelf": "void plastic interior_light_shelf \n0\n0\n5 0.4881 0.4845 0.4533 0.0558 0.05", + "Beige Curtain": "void plastic beige_curtain \n0\n0\n5 0.6476 0.5561 0.4138 0.0047 0.2", + "Aged Galvanized Steel": "void plastic aged_galvanized_steel \n0\n0\n5 0.2037 0.2218 0.2189 0.0057 0.2", + "Dark Blue Jeans": "void plastic dark_blue_jeans \n0\n0\n5 0.0511 0.0761 0.1267 0 0", + "White Gray Wool Sock": "void plastic white_gray_wool_sock \n0\n0\n5 0.4687 0.4433 0.3711 0 0", + "Green Aqua Sock": "void plastic green_aqua_sock \n0\n0\n5 0.2685 0.2922 0.1088 0 0", + "Blue Magenta Rubber (Flo Ho Flip Flop)": "void plastic blue_magenta_rubber_(flo_ho_flip_flop) \n0\n0\n5 0.0961 0.1437 0.2937 0 0", + "Synthetic Cloth Blue (With Surfing Harness)": "void plastic synthetic_cloth_blue_(with_surfing_harness) \n0\n0\n5 0 0.1873 0.437 0 0", + "Synthetic Cloth Red (With Surfing Harness)": "void plastic synthetic_cloth_red_(with_surfing_harness) \n0\n0\n5 0.2981 0 0.019 0 0", + "Dark Blue Towel": "void plastic dark_blue_towel \n0\n0\n5 0.0345 0.038 0.087 0 0", + "Red Towel": "void plastic red_towel \n0\n0\n5 0.231 0.0316 0.0608 0 0", + "Light Blue Towel": "void plastic light_blue_towel \n0\n0\n5 0.0531 0.1878 0.3313 0 0", + "Sneakers Orange": "void plastic sneakers_orange \n0\n0\n5 0.2783 0.0199 0.0401 0 0", + "Sneakers White (Dirty Leather)": "void plastic sneakers_white_(dirty_leather) \n0\n0\n5 0.6386 0.5921 0.4706 0 0", + "Brown Leather (Bass Saddle Shoe)": "void plastic brown_leather_(bass_saddle_shoe) \n0\n0\n5 0.1533 0.0839 0.0429 0 0", + "Brown Suede (Bass Saddle Shoe)": "void plastic brown_suede_(bass_saddle_shoe) \n0\n0\n5 0.1495 0.0962 0.0497 0 0", + "Red Rubber (Bass Saddle Shoe)": "void plastic red_rubber_(bass_saddle_shoe) \n0\n0\n5 0.2006 0.0719 0.0479 0 0", + "Dark Blue Cotton Sweat Pants": "void plastic dark_blue_cotton_sweat_pants \n0\n0\n5 0.0237 0.0336 0.0729 0 0", + "Red Letters On T Shirt": "void plastic red_letters_on_t_shirt \n0\n0\n5 0.4346 0.0334 0.0476 0 0", + "Green Snow Hat": "void plastic green_snow_hat \n0\n0\n5 0.2224 0.4118 0.0465 0 0", + "Light Green Towel": "void plastic light_green_towel \n0\n0\n5 0.3326 0.5176 0.4859 0 0", + "Light Blue Towel 2": "void plastic light_blue_towel_2 \n0\n0\n5 0.3173 0.437 0.664 0 0", + "Banana Yellow (Just Turned)": "void plastic banana_yellow_(just_turned) \n0\n0\n5 0.6343 0.5316 0.1109 0 0", + "Wheat Bread": "void plastic wheat_bread \n0\n0\n5 0.5214 0.3737 0.1985 0 0", + "Wheat Bread Brust": "void plastic wheat_bread_brust \n0\n0\n5 0.2693 0.1164 0.0386 0 0", + "Pancake": "void plastic pancake \n0\n0\n5 0.1954 0.0875 0.0345 0 0", + "Ripe Brown Banana": "void plastic ripe_brown_banana \n0\n0\n5 0.0905 0.0556 0.0406 0 0", + "Highlighter Pen (Plastic)": "void plastic highlighter_pen_(plastic) \n0\n0\n5 0.526 0.7259 0.0321 0 0", + "Swiss Army Knife (Plastic)": "void plastic swiss_army_knife_(plastic) \n0\n0\n5 0.1939 0 0.0066 0 0", + "Green Key Ring (Plastic)": "void plastic green_key_ring_(plastic) \n0\n0\n5 0.014 0.3465 0.0204 0 0", + "Green Sport Shirt": "void plastic green_sport_shirt \n0\n0\n5 0 0.1664 0.1351 0 0", + "White Sport Shirt": "void plastic white_sport_shirt \n0\n0\n5 0.7034 0.6912 0.7163 0 0", + "White T Shirt": "void plastic white_t_shirt \n0\n0\n5 0.762 0.7753 0.8317 0 0", + "Faded Jeans": "void plastic faded_jeans \n0\n0\n5 0.1909 0.247 0.3432 0 0", + "Purple Ez Rig (Plastic)": "void plastic purple_ez_rig_(plastic) \n0\n0\n5 0.183 0.1139 0.407 0 0", + "Leather Brown Belt": "void plastic leather_brown_belt \n0\n0\n5 0.0591 0.0353 0.0275 0 0", + "Black Backpack": "void plastic black_backpack \n0\n0\n5 0.0299 0.0286 0.0273 0 0", + "Dark Blue Bandana": "void plastic dark_blue_bandana \n0\n0\n5 0.0304 0.0209 0.0673 0 0", + "Skin Caucasian (Light)": "void plastic skin_caucasian_(light) \n0\n0\n5 0.5673 0.2797 0.1944 0 0", + "Skin East Indian (Dark)": "void plastic skin_east_indian_(dark) \n0\n0\n5 0.2834 0.1482 0.0785 0 0", + "Hair Black": "void plastic hair_black \n0\n0\n5 0.0164 0.0152 0.014 0 0", + "Skin East Indian (Light)": "void plastic skin_east_indian_(light) \n0\n0\n5 0.3818 0.1964 0.1106 0 0", + "Hair Black 2": "void plastic hair_black_2 \n0\n0\n5 0.0156 0.0151 0.0141 0 0", + "Skin Caucasian": "void plastic skin_caucasian \n0\n0\n5 0.4935 0.27 0.187 0 0", + "Skin Caucasian 2": "void plastic skin_caucasian_2 \n0\n0\n5 0.4027 0.2161 0.1354 0 0", + "Skin Caucasian (Light) 2": "void plastic skin_caucasian_(light)_2 \n0\n0\n5 0.508 0.2878 0.1979 0 0", + "Skin Caucasian (Light) 3": "void plastic skin_caucasian_(light)_3 \n0\n0\n5 0.5767 0.3631 0.2631 0 0", + "Hair Red": "void plastic hair_red \n0\n0\n5 0.1841 0.0889 0.0346 0 0", + "Skin Caucasian (Dark)": "void plastic skin_caucasian_(dark) \n0\n0\n5 0.3451 0.1843 0.1012 0 0", + "Skin East Indian (Light) 2": "void plastic skin_east_indian_(light)_2 \n0\n0\n5 0.3197 0.193 0.11 0 0", + "Skin African American": "void plastic skin_african_american \n0\n0\n5 0.5338 0.3343 0.2135 0 0", + "Skin Asian": "void plastic skin_asian \n0\n0\n5 0.4233 0.2243 0.1384 0 0", + "Skin Caucasian 3": "void plastic skin_caucasian_3 \n0\n0\n5 0.3411 0.1971 0.122 0 0", + "Skin Caucasian 4": "void plastic skin_caucasian_4 \n0\n0\n5 0.5064 0.2823 0.2176 0 0", + "Hair Brown": "void plastic hair_brown \n0\n0\n5 0.0767 0.0504 0.0333 0 0", + "Skin Caucasian 5": "void plastic skin_caucasian_5 \n0\n0\n5 0.3997 0.1875 0.1364 0 0", + "Hair Gray Black": "void plastic hair_gray_black \n0\n0\n5 0.0297 0.0226 0.0183 0 0", + "Skin African American 2": "void plastic skin_african_american_2 \n0\n0\n5 0.0647 0.0382 0.0284 0 0", + "Skin Caucasian 6": "void plastic skin_caucasian_6 \n0\n0\n5 0.4431 0.2661 0.1908 0 0", + "Hair Brown 2": "void plastic hair_brown_2 \n0\n0\n5 0.0698 0.0348 0.012 0 0", + "Skin Caucasian (Dark With Makeup)": "void plastic skin_caucasian_(dark_with_makeup) \n0\n0\n5 0.449 0.2425 0.1338 0 0", + "Skin Caucasian 7": "void plastic skin_caucasian_7 \n0\n0\n5 0.4383 0.2559 0.1693 0 0", + "Skin Caucasian (Dark) 2": "void plastic skin_caucasian_(dark)_2 \n0\n0\n5 0.2442 0.1615 0.0941 0 0", + "Skin Caucasian 8": "void plastic skin_caucasian_8 \n0\n0\n5 0.4982 0.2881 0.1748 0 0", + "Skin Caucasian (With Makeup)": "void plastic skin_caucasian_(with_makeup) \n0\n0\n5 0.4192 0.2211 0.1496 0 0", + "Hair Blonde": "void plastic hair_blonde \n0\n0\n5 0.147 0.0959 0.0516 0 0", + "Skin African American3": "void plastic skin_african_american3 \n0\n0\n5 0.0635 0.0454 0.035 0 0", + "Skin Caucasian 9": "void plastic skin_caucasian_9 \n0\n0\n5 0.4615 0.2534 0.1391 0 0", + "Skin Caucasian 10": "void plastic skin_caucasian_10 \n0\n0\n5 0.3901 0.2181 0.1353 0 0", + "Skin Caucasian 11": "void plastic skin_caucasian_11 \n0\n0\n5 0.4155 0.2128 0.1359 0 0", + "Skin Asian 2": "void plastic skin_asian_2 \n0\n0\n5 0.4729 0.2589 0.1726 0 0", + "Skin Caucasian (With Makeup) 2": "void plastic skin_caucasian_(with_makeup)_2 \n0\n0\n5 0.5028 0.2774 0.1768 0 0", + "Skin Caucasian 12": "void plastic skin_caucasian_12 \n0\n0\n5 0.4067 0.2125 0.1513 0 0", + "Skin Caucasian (Arm)": "void plastic skin_caucasian_(arm) \n0\n0\n5 0.4578 0.307 0.2099 0 0", + "Wood Pine Treated": "void plastic wood_pine_treated \n0\n0\n5 0.3879 0.3086 0.1534 0 0", + "Cucumber": "void plastic cucumber \n0\n0\n5 0.0896 0.1362 0.0066 0 0", + "Prune (With Specularities)": "void plastic prune_(with_specularities) \n0\n0\n5 0.0332 0.0296 0.0288 0 0", + "Corn (Raw)": "void plastic corn_(raw) \n0\n0\n5 0.7623 0.5308 0.1215 0 0", + "Corn Husk": "void plastic corn_husk \n0\n0\n5 0.1462 0.1923 0.0409 0 0", + "Apple Yellow Delicious": "void plastic apple_yellow_delicious \n0\n0\n5 0.7097 0.5169 0.0485 0 0", + "Kiwi Outside": "void plastic kiwi_outside \n0\n0\n5 0.1507 0.0872 0.0299 0 0", + "Green Pepper": "void plastic green_pepper \n0\n0\n5 0.0823 0.129 0 0 0", + "Peach Skin Yellow": "void plastic peach_skin_yellow \n0\n0\n5 0.6348 0.3568 0.0639 0 0", + "Peach Skin Red": "void plastic peach_skin_red \n0\n0\n5 0.3325 0.0709 0.0534 0 0", + "Lemon Skin": "void plastic lemon_skin \n0\n0\n5 0.7174 0.4833 0 0 0", + "Cabbage": "void plastic cabbage \n0\n0\n5 0.2807 0.3394 0.1054 0 0", + "Lettuce": "void plastic lettuce \n0\n0\n5 0.1421 0.1899 0.058 0 0", + "Carrot": "void plastic carrot \n0\n0\n5 0.7128 0.1699 0.026 0 0", + "Pear": "void plastic pear \n0\n0\n5 0.3291 0.3278 0.0512 0 0", + "Sugar (White)": "void plastic sugar_(white) \n0\n0\n5 0.802 0.7994 0.7503 0 0", + "Bay Leaf": "void plastic bay_leaf \n0\n0\n5 0.1795 0.169 0.0729 0 0", + "Barley Seeds": "void plastic barley_seeds \n0\n0\n5 0.5499 0.4662 0.3204 0 0", + "Lentil Seeds": "void plastic lentil_seeds \n0\n0\n5 0.2913 0.1948 0.0901 0 0", + "Sesame Seeds": "void plastic sesame_seeds \n0\n0\n5 0.6032 0.4948 0.2663 0 0", + "Brown Rice Seeds": "void plastic brown_rice_seeds \n0\n0\n5 0.4977 0.3717 0.138 0 0", + "Almond": "void plastic almond \n0\n0\n5 0.5496 0.3695 0.1475 0 0", + "Walnut": "void plastic walnut \n0\n0\n5 0.4123 0.253 0.1137 0 0", + "Brown Paper Bag": "void plastic brown_paper_bag \n0\n0\n5 0.3654 0.247 0.1392 0 0", + "Straw From Broom": "void plastic straw_from_broom \n0\n0\n5 0.3841 0.2727 0.0888 0 0", + "Gum Green": "void plastic gum_green \n0\n0\n5 0.7143 0.7775 0.33 0 0", + "Denim": "void plastic denim \n0\n0\n5 0.0668 0.0753 0.1067 0 0", + "Fabric Green": "void plastic fabric_green \n0\n0\n5 0.0278 0.0416 0.0339 0 0", + "Fabric White": "void plastic fabric_white \n0\n0\n5 0.8951 0.82 0.7243 0 0", + "Yarn Yellow": "void plastic yarn_yellow \n0\n0\n5 0.7476 0.6954 0.2191 0 0", + "Suede Gray": "void plastic suede_gray \n0\n0\n5 0.2595 0.2552 0.2504 0 0", + "Fabric Pink": "void plastic fabric_pink \n0\n0\n5 0.4827 0.219 0.3327 0 0", + "Fabric Dark Brown": "void plastic fabric_dark_brown \n0\n0\n5 0.1811 0.1321 0.0934 0 0", + "Table Cloth White": "void plastic table_cloth_white \n0\n0\n5 0.8295 0.7878 0.7368 0 0", + "Fabric Pink Ii": "void plastic fabric_pink_ii \n0\n0\n5 0.8824 0.5864 0.6695 0 0", + "Fabric Brown": "void plastic fabric_brown \n0\n0\n5 0.3094 0.1909 0.0924 0 0", + "Raincoat Yellow": "void plastic raincoat_yellow \n0\n0\n5 0.6813 0.3853 0.014 0 0", + "Raincoat Blue": "void plastic raincoat_blue \n0\n0\n5 0.0128 0.0789 0.1896 0 0", + "Raincoat Magenta Red": "void plastic raincoat_magenta_red \n0\n0\n5 0.2591 0.0175 0.1158 0 0", + "Cotton Shirt Blue": "void plastic cotton_shirt_blue \n0\n0\n5 0.0396 0.0526 0.0965 0 0", + "Cotton Cloth Light Gray": "void plastic cotton_cloth_light_gray \n0\n0\n5 0.3382 0.3364 0.345 0 0", + "Polished Copper": "void metal polished_copper \n0\n0\n5 0.9279 0.6369 0.5317 0.7072 0", + "Polished Gold": "void metal polished_gold \n0\n0\n5 0.984 0.7873 0.3312 0.8098 0", + "Polished Aluminum": "void metal polished_aluminum \n0\n0\n5 0.9138 0.9219 0.9246 0.9199 0", + "Polished Silver": "void metal polished_silver \n0\n0\n5 0.97 0.9603 0.9127 0.9598 0", + "Wallpapered Column": "void plastic wallpapered_column \n0\n0\n5 0.345 0.3336 0.3086 0.0032 0.2", + "Opaque Roller Blind": "void plastic opaque_roller_blind \n0\n0\n5 0.7862 0.8093 0.7943 0.0129 0.2", + "Blackout Roller Shade Opaque": "void plastic blackout_roller_shade_opaque \n0\n0\n5 0.487 0.496 0.4905 0.0096 0.2", + "White Painted Column": "void plastic white_painted_column \n0\n0\n5 0.8884 0.8896 0.8423 0.0113 0.2", + "Blackout Roller Shade": "void plastic blackout_roller_shade \n0\n0\n5 0.7471 0.7335 0.6255 0.0146 0.2", + "Dark Purple Column": "void plastic dark_purple_column \n0\n0\n5 0.0966 0.0447 0.0776 0.0009 0.2", + "Light Shelf Bottom Surface": "void plastic light_shelf_bottom_surface \n0\n0\n5 0.4851 0.4963 0.4958 0.0552 0.05", + "Light Shelf Top Surface": "void plastic light_shelf_top_surface \n0\n0\n5 0.4929 0.5007 0.4951 0.0515 0.05", + "Opaque Roller Shade": "void plastic opaque_roller_shade \n0\n0\n5 0.582 0.5558 0.467 0.0059 0.2", + "Light Shelf Top Material": "void plastic light_shelf_top_material \n0\n0\n5 0.4666 0.4684 0.4584 0.4944 0.05", + "Light Shelf Bottom Material": "void plastic light_shelf_bottom_material \n0\n0\n5 0.8138 0.8181 0.7653 0.0421 0.05", + "Grey Handrail": "void plastic grey_handrail \n0\n0\n5 0.3624 0.3489 0.3141 0.0173 0.2", + "Specular Handrail": "void plastic specular_handrail \n0\n0\n5 0.4175 0.4013 0.3658 0.2028 0.1", + "Translucent Plastic Reflection": "void plastic translucent_plastic_reflection \n0\n0\n5 0.4619 0.5665 0.6735 0.0516 0.05", + "Wooden Frame": "void plastic wooden_frame \n0\n0\n5 0.194 0.1113 0.0527 0.004 0.2", + "Column E14 526": "void plastic column_e14_526 \n0\n0\n5 0.837 0.8211 0.7325 0.0099 0.1", + "Door Closer 7 301A": "void plastic door_closer_7_301a \n0\n0\n5 0.0609 0.0509 0.0428 0.0329 0.05", + "Doorknob 7 301A": "void plastic doorknob_7_301a \n0\n0\n5 0.0954 0.0787 0.0676 0.0077 0.05", + "Paper on Door 7 301A": "void plastic paper_on_door_7_301a \n0\n0\n5 0.7527 0.7644 1.0191 0.0055 0.05", + "Fire Alarm 7 301A": "void plastic fire_alarm_7_301a \n0\n0\n5 0.3636 0.0318 0.0392 0.0075 0.05", + "Light Switch Plate 7 301A": "void plastic light_switch_plate_7_301a \n0\n0\n5 0.3645 0.3525 0.3244 0.0973 0", + "Window Sill 7 301A": "void plastic window_sill_7_301a \n0\n0\n5 0.0301 0.0307 0.0315 0.0171 0.1", + "Baseboard 7 301A": "void plastic baseboard_7_301a \n0\n0\n5 0.0475 0.0485 0.05 0.0024 0.05", + "Mouse Trap 7 301A": "void plastic mouse_trap_7_301a \n0\n0\n5 0.7423 0.7236 0.7932 0.0058 0.1", + "Duct 7 301A": "void plastic duct_7_301a \n0\n0\n5 0.7895 0.7484 0.6203 0.0062 0.2", + "HVAC Vent Cover 7 301A": "void plastic hvac_vent_cover_7_301a \n0\n0\n5 0.5123 0.5173 0.5093 0.0366 0.05", + "Metallic Pole": "void plastic metallic_pole \n0\n0\n5 0.2129 0.2278 0.2229 0.0427 0.1", + "Light Golden Aluminium Column": "void plastic light_golden_aluminium_column \n0\n0\n5 0.3925 0.3872 0.3326 0.0291 0.2", + "Metallic Hand Rail": "void plastic metallic_hand_rail \n0\n0\n5 0.4034 0.3928 0.3781 0.1131 0.05", + "Concrete Support": "void plastic concrete_support \n0\n0\n5 0.4701 0.423 0.3244 0.0016 0.2", + "White Concrete Column": "void plastic white_concrete_column \n0\n0\n5 0.8689 0.8462 0.7308 0 0", + "White Painted Metal Frame": "void plastic white_painted_metal_frame \n0\n0\n5 0.8177 0.8048 0.717 0.0319 0.05", + "White Board 2": "void plastic white_board_2 \n0\n0\n5 0.7745 0.7712 0.7247 0.0479 0.01", + "Projector Screen": "void plastic projector_screen \n0\n0\n5 0.84 0.8465 0.7921 0.0076 0.2", + "Grey Metallic Door Frame CH": "void plastic grey_metallic_door_frame_ch \n0\n0\n5 0.6396 0.6522 0.6543 0.271 0.05", + "White Opaque Curtain CH": "void plastic white_opaque_curtain_ch \n0\n0\n5 0.7631 0.779 0.7865 0.0011 0.3" + }, + "Exterior Building": { + "Grey Aluminium Facade Clading": "void plastic grey_aluminium_facade_clading \n0\n0\n5 0.188 0.1835 0.1608 0.0207 0.1", + "Aluminium Grey Overhang": "void plastic aluminium_grey_overhang \n0\n0\n5 0.1835 0.1787 0.1641 0.0201 0.1", + "Aluminium Green Overhang": "void plastic aluminium_green_overhang \n0\n0\n5 0.2278 0.2995 0.0483 0.021 0.2", + "Aluminium White Cladding": "void plastic aluminium_white_cladding \n0\n0\n5 0.4652 0.4617 0.4368 0.0207 0.1", + "Aluminium Purple Overhang": "void plastic aluminium_purple_overhang \n0\n0\n5 0.4743 0.415 0.4666 0.021 0.1", + "Aluminium Grey Exterior Cladding": "void plastic aluminium_grey_exterior_cladding \n0\n0\n5 0.4659 0.4639 0.4421 0.0237 0.2", + "Dark Grey Aluminium Roof Lining": "void plastic dark_grey_aluminium_roof_lining \n0\n0\n5 0.185 0.1797 0.1641 0.0165 0.2", + "Red Brick": "void plastic red_brick \n0\n0\n5 0.1295 0.0967 0.0737 0 0.3", + "Exterior Wood Wall": "void plastic exterior_wood_wall \n0\n0\n5 0.1519 0.1403 0.1316 0.0048 0.2", + "Frame Material For Exterior Louvers And Lightshelves": "void plastic frame_material_for_exterior_louvers_and_lightshelves \n0\n0\n5 0.8312 0.8274 0.7826 0.0165 0.1", + "Curved Exterior Louvers": "void plastic curved_exterior_louvers \n0\n0\n5 0.5299 0.5444 0.5178 0.0056 0.2", + "Dirty Exterior Concrete": "void plastic dirty_exterior_concrete \n0\n0\n5 0.3408 0.2674 0.1507 0.002 0.2", + "Grey Exterior Facade Panels": "void plastic grey_exterior_facade_panels \n0\n0\n5 0.4426 0.445 0.4364 0.0333 0.1", + "Red Paint Exterior": "void plastic red_paint_exterior \n0\n0\n5 0.581 0.0632 0.0609 0.0282 0.1", + "Exterior White Wall": "void plastic exterior_white_wall \n0\n0\n5 0.8499 0.8263 0.7107 0 0", + "Grey Painted Metal Column": "void plastic grey_painted_metal_column \n0\n0\n5 0.1149 0.1006 0.083 0.0012 0.2", + "White Exterior Wall": "void plastic white_exterior_wall \n0\n0\n5 0.7051 0.6965 0.6529 0.0027 0.2", + "Purple Metal Shade": "void plastic purple_metal_shade \n0\n0\n5 0.1742 0.125 0.1416 0.0043 0.2", + "Exterior Concrete Wall": "void plastic exterior_concrete_wall \n0\n0\n5 0.701 0.6924 0.6626 0.0003 0.3", + "White Exterior Wall Plaster": "void plastic white_exterior_wall_plaster \n0\n0\n5 0.8692 0.8706 0.8124 0 0.2", + "White Plaster Exterior Wall": "void plastic white_plaster_exterior_wall \n0\n0\n5 0.8824 0.875 0.8154 0 0.2", + "Red Brick Exterior Wall": "void plastic red_brick_exterior_wall \n0\n0\n5 0.3061 0.0771 0.0701 0.0012 0.3", + "White Painted Exterior Wall": "void plastic white_painted_exterior_wall \n0\n0\n5 0.6974 0.7203 0.6515 0.0012 0.2", + "MIT Med Brick": "void plastic mit_med_brick \n0\n0\n5 0.12 0.0521 0.0367 0.0001 0.2", + "Service Brick": "void plastic service_brick \n0\n0\n5 0.2046 0.0834 0.0514 0.0005 0.2", + "Res Hall Brick": "void plastic res_hall_brick \n0\n0\n5 0.4183 0.3367 0.2398 0.0013 0.3", + "Res Hall Stone": "void plastic res_hall_stone \n0\n0\n5 0.5066 0.4552 0.367 0.0017 0.3", + "Media Lab Metal": "void plastic media_lab_metal \n0\n0\n5 0.4573 0.4598 0.44 0.0238 0.05", + "Window Sill Concrete 7 301A": "void plastic window_sill_concrete_7_301a \n0\n0\n5 0.3541 0.2801 0.1825 0.0009 0.3", + "Brick Outside Window 7 301A": "void plastic brick_outside_window_7_301a \n0\n0\n5 0.4641 0.3981 0.281 0.0019 0", + "Metal Spandrel Panel 7 301A": "void plastic metal_spandrel_panel_7_301a \n0\n0\n5 0.1565 0.1515 0.1289 0.0008 0.1", + "Brick Building 7": "void plastic brick_building_7 \n0\n0\n5 0.5964 0.4835 0.2988 0.0037 0.3", + "Brick Building 3": "void plastic brick_building_3 \n0\n0\n5 0.4362 0.3534 0.2306 0.0017 0.3", + "Construction Office Trailer": "void plastic construction_office_trailer \n0\n0\n5 0.5349 0.5598 0.5224 0.0338 0.1", + "Brick Building 5": "void plastic brick_building_5 \n0\n0\n5 0.4489 0.3651 0.2307 0.0024 0.3", + "Brick Building 5 Old": "void plastic brick_building_5_old \n0\n0\n5 0.3656 0.2853 0.1818 0.0013 0.3", + "Brick Building 1": "void plastic brick_building_1 \n0\n0\n5 0.4356 0.3595 0.2458 0.0017 0.3", + "White Exterior Corridor Wall": "void plastic white_exterior_corridor_wall \n0\n0\n5 0.8138 0.783 0.6924 0.004 0.2", + "White Exterior Corridor Wall 2": "void plastic white_exterior_corridor_wall_2 \n0\n0\n5 0.8606 0.8348 0.7652 0.0079 0.2", + "Exterior Red Painted Wall": "void plastic exterior_red_painted_wall \n0\n0\n5 0.2376 0.0659 0.0667 0.0004 0.2", + "Exterior White Painted Wall": "void plastic exterior_white_painted_wall \n0\n0\n5 0.8684 0.8406 0.7596 0.0051 0.2", + "White Plaster Facade": "void plastic white_plaster_facade \n0\n0\n5 0.4412 0.4028 0.3213 0.0024 0.2", + "White Plaster Facade 2": "void plastic white_plaster_facade_2 \n0\n0\n5 0.8709 0.8533 0.7802 0.0089 0.2", + "Light Grey Plaster Facade": "void plastic light_grey_plaster_facade \n0\n0\n5 0.5725 0.5451 0.4813 0.001 0.2", + "Beige Plaster Facade": "void plastic beige_plaster_facade \n0\n0\n5 0.819 0.7746 0.6631 0.0043 0.2", + "Grey Plaster Facade": "void plastic grey_plaster_facade \n0\n0\n5 0.5901 0.5677 0.5085 0 0.2", + "Pale Orange Plaster Facade": "void plastic pale_orange_plaster_facade \n0\n0\n5 0.7101 0.5119 0.3124 0.0035 0.2", + "Light Grey Plaster Facade 2": "void plastic light_grey_plaster_facade_2 \n0\n0\n5 0.5579 0.5417 0.4963 0.0018 0.2", + "Metallic Shade Overhang": "void plastic metallic_shade_overhang \n0\n0\n5 0.4775 0.4877 0.4879 0.0254 0.1", + "White Exterior Plaster Facade": "void plastic white_exterior_plaster_facade \n0\n0\n5 0.6559 0.6422 0.5656 0.0006 0.2", + "Grey Ceramic Tile Wall": "void plastic grey_ceramic_tile_wall \n0\n0\n5 0.2642 0.2477 0.2186 0.0383 0.1", + "Grey Exterior Plaster Facade": "void plastic grey_exterior_plaster_facade \n0\n0\n5 0.4352 0.4322 0.4114 0 0.2", + "Light Pink Exterior Plaster Facade": "void plastic light_pink_exterior_plaster_facade \n0\n0\n5 0.8186 0.6332 0.5652 0.007 0.2", + "Grey Aluminium Window Frame ": "void plastic grey_aluminium_window_frame_ \n0\n0\n5 0.4179 0.4171 0.3977 0.0296 0.1", + "Dark Brown Aluminium Window Frame ": "void plastic dark_brown_aluminium_window_frame_ \n0\n0\n5 0.0796 0.0548 0.0317 0.0218 0.1", + "Granite Wall Tiles Facade": "void plastic granite_wall_tiles_facade \n0\n0\n5 0.2379 0.2418 0.2274 0.0349 0.2", + "Aluminium Yellow Facade": "void plastic aluminium_yellow_facade \n0\n0\n5 0.5012 0.3763 0.1584 0.0298 0.2", + "Grey Aluminium Facade": "void plastic grey_aluminium_facade \n0\n0\n5 0.363 0.3583 0.3014 0.0245 0.1", + "White Rough Plaster Facade": "void plastic white_rough_plaster_facade \n0\n0\n5 0.3855 0.3419 0.264 0.0009 0.3", + "Aluminum Metal Cladding": "void plastic aluminum_metal_cladding \n0\n0\n5 0.6269 0.6299 0.6146 0.0533 0.1", + "Yellow Brick": "void plastic yellow_brick \n0\n0\n5 0.5074 0.3738 0.2053 0.0004 0.3", + "Dirty Brick": "void plastic dirty_brick \n0\n0\n5 0.1476 0.1253 0.0877 0 0.3", + "Concrete Exterior Wall Daniels Building": "void plastic concrete_exterior_wall_daniels_building \n0\n0\n5 0.268 0.2568 0.2325 0 0.3", + "Concrete Exterior Wall": "void plastic concrete_exterior_wall \n0\n0\n5 0.3547 0.3305 0.2794 0.0008 0.3", + "White Brick Facade": "void plastic white_brick_facade \n0\n0\n5 0.7319 0.6478 0.4713 0.0025 0.3", + "Clean Brick": "void plastic clean_brick \n0\n0\n5 0.4745 0.3725 0.209 0 0.3", + "Dirty Brick 2": "void plastic dirty_brick_2 \n0\n0\n5 0.1603 0.1365 0.1007 0 0.3", + "Plaster Exterior Wall": "void plastic plaster_exterior_wall \n0\n0\n5 0.251 0.2059 0.1309 0.0001 0.3", + "Light Yellow Brick": "void plastic light_yellow_brick \n0\n0\n5 0.6826 0.569 0.3189 0.0009 0.3", + "Red Brick 2": "void plastic red_brick_2 \n0\n0\n5 0.3509 0.1302 0.054 0.0003 0.3", + "Brick Facade": "void plastic brick_facade \n0\n0\n5 0.1381 0.0813 0.0598 0 0.3", + "Dark Brick Facade": "void plastic dark_brick_facade \n0\n0\n5 0.049 0.0405 0.0394 0 0.3", + "Concrete Exterior Wall 2": "void plastic concrete_exterior_wall_2 \n0\n0\n5 0.3412 0.2892 0.215 0 0.3", + "Rough Concrete Wall": "void plastic rough_concrete_wall \n0\n0\n5 0.3371 0.2918 0.2082 0 0.3", + "Bright Concrete Wall": "void plastic bright_concrete_wall \n0\n0\n5 0.4146 0.3604 0.264 0.0005 0.3", + "Concrete Exterior Wall 3": "void plastic concrete_exterior_wall_3 \n0\n0\n5 0.4018 0.3767 0.3224 0 0.3", + "White Wall 2": "void plastic white_wall_2 \n0\n0\n5 0.8164 0.8151 0.7955 0.0094 0.2", + "Green Outdoor Wall": "void plastic green_outdoor_wall \n0\n0\n5 0.4808 0.5907 0.1465 0.0043 0.3", + "White Column Exterior": "void plastic white_column_exterior \n0\n0\n5 0.8712 0.8654 0.8104 0.0065 0.3", + "Gray Outdoor Wall": "void plastic gray_outdoor_wall \n0\n0\n5 0.1357 0.1292 0.1189 0.0024 0.3", + "Red Exterior Wall": "void plastic red_exterior_wall \n0\n0\n5 0.375 0.0965 0.1047 0.0002 0.3" + }, + "Window Mullion": { + "Window Mullion": "void plastic window_mullion \n0\n0\n5 0.1268 0.1463 0.1635 0.0237 0.2", + "Green Mullion Vertical": "void plastic green_mullion_vertical \n0\n0\n5 0.0447 0.0907 0.0575 0.0197 0.1", + "Green Mullion Horizontal": "void plastic green_mullion_horizontal \n0\n0\n5 0.0323 0.0764 0.0432 0.0333 0.1", + "Light Mullion": "void plastic light_mullion \n0\n0\n5 0.528 0.5266 0.5215 0.0254 0.1", + "Grey Mullion": "void plastic grey_mullion \n0\n0\n5 0.2072 0.1988 0.1816 0.0264 0.1", + "Mullion Grey": "void plastic mullion_grey \n0\n0\n5 0.221 0.2125 0.1963 0.0284 0.1", + "Grey Window Mullion": "void plastic grey_window_mullion \n0\n0\n5 0.4105 0.3986 0.3604 0.0673 0.1", + "White Mullions": "void plastic white_mullions \n0\n0\n5 0.7834 0.782 0.7241 0.0455 0.1", + "White Mullions 2": "void plastic white_mullions_2 \n0\n0\n5 0.8038 0.8118 0.7665 0.0424 0.1", + "Red Painted Mullions Exterior": "void plastic red_painted_mullions_exterior \n0\n0\n5 0.2769 0.0191 0.024 0.0187 0.1", + "Grey Specular Mullion": "void plastic grey_specular_mullion \n0\n0\n5 0.2567 0.2354 0.184 0.0426 0.05", + "Black Painted Mullion": "void plastic black_painted_mullion \n0\n0\n5 0.0327 0.0332 0.0345 0.0129 0.1", + "Exterior Grey Mullion": "void plastic exterior_grey_mullion \n0\n0\n5 0.2406 0.2218 0.1789 0.0206 0.1", + "Aluminum Window Mullion": "void plastic aluminum_window_mullion \n0\n0\n5 0.4947 0.5036 0.4942 0.0297 0.1", + "White Aluminum Mullion": "void plastic white_aluminum_mullion \n0\n0\n5 0.6448 0.7001 0.7637 0.0431 0.1", + "Black Window Mullion": "void plastic black_window_mullion \n0\n0\n5 0.0383 0.0389 0.0394 0.0089 0.1", + "Black Window Frame": "void plastic black_window_frame \n0\n0\n5 0.0741 0.0534 0.0363 0.0147 0.1", + "Grey Mullions": "void plastic grey_mullions \n0\n0\n5 0.4769 0.4845 0.4781 0.0768 0.1", + "Specular Window Mullion": "void plastic specular_window_mullion \n0\n0\n5 0.6674 0.6821 0.6804 0.2003 0.05", + "Aluminium Brown Window Mullion": "void plastic aluminium_brown_window_mullion \n0\n0\n5 0.0741 0.05 0.0303 0.0227 0.1", + "Dark Brown Window Mullion": "void plastic dark_brown_window_mullion \n0\n0\n5 0.0849 0.0594 0.0443 0.02 0.1", + "Light Grey Window Frame": "void plastic light_grey_window_frame \n0\n0\n5 0.7048 0.712 0.7012 0.0312 0.1", + "Aluminium Window Mullion": "void plastic aluminium_window_mullion \n0\n0\n5 0.6291 0.6273 0.5825 0.1362 0.1", + "Grey Window Frame": "void plastic grey_window_frame \n0\n0\n5 0.1764 0.1691 0.1685 0.0123 0.2", + "Matte Aluminum Window Mullion": "void plastic matte_aluminum_window_mullion \n0\n0\n5 0.6841 0.6946 0.6659 0.0576 0.1", + "Mullion E14 526": "void plastic mullion_e14_526 \n0\n0\n5 0.4793 0.4871 0.4802 0.0353 0.01", + "Mullions Interior 7 301A": "void plastic mullions_interior_7_301a \n0\n0\n5 0.0539 0.0542 0.0554 0.0029 0.1", + "Mullions Exterior 7 301A": "void plastic mullions_exterior_7_301a \n0\n0\n5 0.163 0.1553 0.1309 0.0006 0.1", + "Dark Grey Metal Frame": "void plastic dark_grey_metal_frame \n0\n0\n5 0.2075 0.1999 0.1791 0.0347 0.1", + "Window Mullion 3": "void plastic window_mullion_3 \n0\n0\n5 0.1997 0.1963 0.1833 0.0117 0.2", + "Window Mullion 1": "void plastic window_mullion_1 \n0\n0\n5 0.3604 0.3591 0.3375 0.0151 0.1", + "Window Mullion 2": "void plastic window_mullion_2 \n0\n0\n5 0.0285 0.0293 0.0308 0.0111 0.2", + "White Indoor Window Frame CH": "void plastic white_indoor_window_frame_ch \n0\n0\n5 0.8592 0.8425 0.7504 0.0285 0.1", + "White Indoor Window Frame NL": "void plastic white_indoor_window_frame_nl \n0\n0\n5 0.8341 0.8392 0.8115 0.0383 0.1" + }, + "PV": { + "Motech Im60 Solar Panel Cell": "void ashik2 motech_im60_solar_panel_cell \n0\n0\n5 0.0561 0.0605 0.0855 0.0411 0", + "Motech Im60 White Strips": "void ashik2 motech_im60_white_strips \n0\n0\n5 0.3655 0.3679 0.358 0.044 0", + "Motech Im60 Silver Strips": "void ashik2 motech_im60_silver_strips \n0\n0\n5 0.3182 0.3192 0.3202 0.211 0", + "Motech Im60 Frame": "void plastic motech_im60_frame \n0\n0\n5 0.6487 0.6713 0.6571 0.0399 0.1", + "Sunpower E20 Solar Panel Cell": "void ashik2 sunpower_e20_solar_panel_cell \n0\n0\n5 0.036 0.0383 0.0532 0.0299 0", + "Sunpower E20 White Diamond": "void ashik2 sunpower_e20_white_diamond \n0\n0\n5 0.3991 0.4007 0.3902 0.0318 0", + "Sunpower E20 Frame": "void plastic sunpower_e20_frame \n0\n0\n5 0.0479 0.0473 0.0473 0.0062 0.1", + "Thin Film PV on White Exterior Louver": "void plastic thin_film_pv_on_white_exterior_louver \n0\n0\n5 0.0337 0.0455 0.0742 0.0123 0.1" + }, + "Plant": { + "Greenish Grass": "void plastic greenish_grass \n0\n0\n5 0.0977 0.1126 0.0411 0 0.2", + "Pine Needles": "void plastic pine_needles \n0\n0\n5 0.0983 0.1157 0.059 0 0", + "Silver Maple Leaf": "void plastic silver_maple_leaf \n0\n0\n5 0.0648 0.105 0.0227 0 0", + "Maple Dark Green Leaf": "void plastic maple_dark_green_leaf \n0\n0\n5 0.0624 0.0809 0.0365 0 0", + "Bush Leaf": "void plastic bush_leaf \n0\n0\n5 0.1226 0.1773 0.0191 0 0", + "Tree Leaf": "void plastic tree_leaf \n0\n0\n5 0.0625 0.1016 0.0117 0 0", + "Tree Leaf 2": "void plastic tree_leaf_2 \n0\n0\n5 0.0993 0.1183 0.041 0 0", + "Weed Leaf": "void plastic weed_leaf \n0\n0\n5 0.1341 0.1712 0.0879 0 0", + "Red Bush Leaf": "void plastic red_bush_leaf \n0\n0\n5 0.0755 0.0422 0.0327 0 0", + "Red Maple Leaf": "void plastic red_maple_leaf \n0\n0\n5 0.0535 0.0338 0.0331 0 0", + "Bush Fern Like Leaf": "void plastic bush_fern_like_leaf \n0\n0\n5 0.0394 0.0693 0.0133 0 0", + "Grass": "void plastic grass \n0\n0\n5 0.1057 0.134 0.0427 0.0002 0.2", + "Locust Leaf": "void plastic locust_leaf \n0\n0\n5 0.08 0.1197 0.0217 0 0", + "Vine Leaf": "void plastic vine_leaf \n0\n0\n5 0.1239 0.1547 0.036 0 0", + "Oak Leaf": "void plastic oak_leaf \n0\n0\n5 0.0401 0.066 0.0188 0 0", + "Weed Tree Leaf": "void plastic weed_tree_leaf \n0\n0\n5 0.0598 0.0864 0.0341 0 0", + "Daisy White Petals": "void plastic daisy_white_petals \n0\n0\n5 0.7586 0.7737 0.6386 0 0", + "Daisy Yellow Center": "void plastic daisy_yellow_center \n0\n0\n5 0.4672 0.2631 0 0 0", + "Buttercup Flower": "void plastic buttercup_flower \n0\n0\n5 0.4684 0.314 0 0 0", + "Small Magenta Flower": "void plastic small_magenta_flower \n0\n0\n5 0.5712 0.4935 0.3904 0 0", + "Small Magenta Flower (From Vine)": "void plastic small_magenta_flower_(from_vine) \n0\n0\n5 0.1511 0.0435 0.1326 0 0", + "Bark": "void plastic bark \n0\n0\n5 0.1633 0.1461 0.1275 0 0", + "Bark 2": "void plastic bark_2 \n0\n0\n5 0.1128 0.1037 0.0863 0 0", + "Bark Pine": "void plastic bark_pine \n0\n0\n5 0.0984 0.0809 0.064 0 0", + "Bark 3": "void plastic bark_3 \n0\n0\n5 0.2619 0.1909 0.1303 0 0", + "Bark 4": "void plastic bark_4 \n0\n0\n5 0.1334 0.1026 0.0707 0 0", + "Marigold Orange": "void plastic marigold_orange \n0\n0\n5 0.6045 0.169 0 0 0", + "Marigold Yellow": "void plastic marigold_yellow \n0\n0\n5 0.6017 0.3533 0 0 0", + "Pink Flower (Plant Had Red Leaves)": "void plastic pink_flower_(plant_had_red_leaves) \n0\n0\n5 0.4752 0.1226 0.2097 0 0", + "Red Flower (Plant Had Red Leaves)": "void plastic red_flower_(plant_had_red_leaves) \n0\n0\n5 0.3708 0.0148 0.0248 0 0", + "Wood Pine": "void plastic wood_pine \n0\n0\n5 0.5247 0.3253 0.1359 0 0", + "Wood Maple": "void plastic wood_maple \n0\n0\n5 0.4764 0.3296 0.1861 0 0", + "Wood Oak": "void plastic wood_oak \n0\n0\n5 0.444 0.3005 0.1474 0 0", + "Bamboo": "void plastic bamboo \n0\n0\n5 0.4985 0.307 0.1046 0 0", + "Wood Pine (Whiter)": "void plastic wood_pine_(whiter) \n0\n0\n5 0.5998 0.383 0.1319 0 0", + "Wood Worm": "void plastic wood_worm \n0\n0\n5 0.2925 0.14 0.0628 0 0", + "Wood Redwood": "void plastic wood_redwood \n0\n0\n5 0.3349 0.1536 0.0657 0 0", + "Wood Walnut": "void plastic wood_walnut \n0\n0\n5 0.2332 0.1412 0.0834 0 0", + "Bark Chip I": "void plastic bark_chip_i \n0\n0\n5 0.1677 0.1247 0.0888 0 0", + "Bark Chip Ii": "void plastic bark_chip_ii \n0\n0\n5 0.1582 0.1105 0.078 0 0", + "Bark Chip Iii": "void plastic bark_chip_iii \n0\n0\n5 0.3652 0.2365 0.1035 0 0", + "Tree Trunk": "void plastic tree_trunk \n0\n0\n5 0.104 0.0806 0.0459 0.0011 0.3", + "Tree Foliage": "void plastic tree_foliage \n0\n0\n5 0.1311 0.1753 0.0522 0.0002 0.2", + "Leaf 1 Top ": "void plastic leaf_1_top_ \n0\n0\n5 0.0694 0.0918 0.0396 0 0.2", + "Leaf 1 Back ": "void plastic leaf_1_back_ \n0\n0\n5 0.227 0.2662 0.1116 0.0001 0.2", + "Leaf 2 Top ": "void plastic leaf_2_top_ \n0\n0\n5 0.0934 0.1247 0.0408 0 0.2", + "Leaf 2 Back": "void plastic leaf_2_back \n0\n0\n5 0.2498 0.2928 0.1153 0.0008 0.2", + "Green Tropical Grass": "void plastic green_tropical_grass \n0\n0\n5 0.1091 0.1509 0.05 0 0.2", + "Green Shrub": "void plastic green_shrub \n0\n0\n5 0.0541 0.0783 0.042 0.0006 0.2", + "Tree Bark Rain Tree": "void plastic tree_bark_rain_tree \n0\n0\n5 0.0535 0.0431 0.0268 0.0003 0.3", + "Tree Bark Mango Tree": "void plastic tree_bark_mango_tree \n0\n0\n5 0.0557 0.036 0.017 0.0001 0.3", + "Green Leaf From Mango Tree": "void plastic green_leaf_from_mango_tree \n0\n0\n5 0.1007 0.122 0.0446 0.0021 0.2", + "Tree Bark Unknown Tree": "void plastic tree_bark_unknown_tree \n0\n0\n5 0.2218 0.1768 0.1332 0.0004 0.3", + "Green Leaf From Rain Tree": "void plastic green_leaf_from_rain_tree \n0\n0\n5 0.0942 0.1278 0.0403 0.002 0.2", + "Tree Bark": "void plastic tree_bark \n0\n0\n5 0.0835 0.0592 0.0365 0 0.3", + "Green Leaf": "void plastic green_leaf \n0\n0\n5 0.083 0.1108 0.0461 0.0012 0.2", + "Grass 2": "void plastic grass_2 \n0\n0\n5 0.1071 0.1463 0.0308 0 0.2", + "Grass 3": "void plastic grass_3 \n0\n0\n5 0.1713 0.1763 0.0632 0.0003 0.2", + "Dark Tree Foliage": "void plastic dark_tree_foliage \n0\n0\n5 0.0532 0.0689 0.0259 0.0006 0.2", + "Light New Growth Tree Foliage": "void plastic light_new_growth_tree_foliage \n0\n0\n5 0.073 0.1155 0.0255 0.0011 0.2", + "Grass 4": "void plastic grass_4 \n0\n0\n5 0.0981 0.1386 0.0354 0 0.2", + "Grass 5": "void plastic grass_5 \n0\n0\n5 0.1293 0.1312 0.0545 0 0.2", + "Tree Foliage 2": "void plastic tree_foliage_2 \n0\n0\n5 0.095 0.1398 0.0279 0.0002 0.2", + "Grass 6": "void plastic grass_6 \n0\n0\n5 0.0987 0.1239 0.0416 0 0.2", + "Tree Foliage 3": "void plastic tree_foliage_3 \n0\n0\n5 0.11 0.1434 0.089 0 0.2" + }, + "Exterior": { + "Aged Redwood": "void plastic aged_redwood \n0\n0\n5 0.0972 0.0848 0.0651 0 0.3", + "Stop Sign (Red)": "void plastic stop_sign_(red) \n0\n0\n5 0.3326 0.0145 0.0199 0.0214 0.05", + "Stop Sign (White)": "void plastic stop_sign_(white) \n0\n0\n5 0.5273 0.5464 0.5085 0.0424 0.05", + "Wooden Telephone Pole": "void plastic wooden_telephone_pole \n0\n0\n5 0.1174 0.1037 0.0762 0 0.3", + "Blue Mailbox": "void plastic blue_mailbox \n0\n0\n5 0.0121 0.0316 0.0755 0.0382 0.1", + "Stop Sign Back (Brown)": "void plastic stop_sign_back_(brown) \n0\n0\n5 0.1375 0.097 0.0634 0 0.2", + "Stop Sign Back (Metal)": "void plastic stop_sign_back_(metal) \n0\n0\n5 0.4983 0.487 0.4513 0.061 0.2", + "Rock 1": "void plastic rock_1 \n0\n0\n5 0.17 0.1018 0.0717 0 0", + "Rock 2": "void plastic rock_2 \n0\n0\n5 0.1732 0.113 0.0782 0 0", + "Rock 3": "void plastic rock_3 \n0\n0\n5 0.3262 0.3191 0.2901 0 0", + "Rock 4": "void plastic rock_4 \n0\n0\n5 0.3704 0.3198 0.2345 0 0", + "Rock 5": "void plastic rock_5 \n0\n0\n5 0.1699 0.1205 0.0942 0 0", + "Rock 6": "void plastic rock_6 \n0\n0\n5 0.2276 0.2329 0.1954 0 0", + "Rock 7": "void plastic rock_7 \n0\n0\n5 0.2846 0.1794 0.1279 0 0", + "Rock 8": "void plastic rock_8 \n0\n0\n5 0.1989 0.1714 0.1218 0 0", + "Rock 9": "void plastic rock_9 \n0\n0\n5 0.0965 0.0963 0.0836 0 0", + "Rock 10": "void plastic rock_10 \n0\n0\n5 0.1634 0.1257 0.074 0 0", + "Rock 11": "void plastic rock_11 \n0\n0\n5 0.1976 0.1781 0.1224 0 0", + "Rock 12": "void plastic rock_12 \n0\n0\n5 0.1844 0.1715 0.149 0 0", + "Rock 13": "void plastic rock_13 \n0\n0\n5 0.3853 0.3358 0.2572 0 0", + "Rock 14": "void plastic rock_14 \n0\n0\n5 0.2982 0.1958 0.1367 0 0", + "Concrete Jersey Barrier": "void plastic concrete_jersey_barrier \n0\n0\n5 0.3121 0.2521 0.1576 0.0006 0.1", + "Concrete Block Barrier": "void plastic concrete_block_barrier \n0\n0\n5 0.2517 0.2361 0.1896 0.0004 0.1", + "Exhaust Stack": "void plastic exhaust_stack \n0\n0\n5 0.4251 0.412 0.3793 0.1514 0.01", + "Light Post": "void plastic light_post \n0\n0\n5 0.3885 0.3961 0.3776 0.016 0.2" + }, + "Color Swatch": { + "Dupont Light Red 1": "void plastic dupont_light_red_1 \n0\n0\n5 0.7159 0.124 0.0975 0 0", + "Dupont Red 2": "void plastic dupont_red_2 \n0\n0\n5 0.3782 0 0.0002 0 0", + "Dupont Dark Red 3": "void plastic dupont_dark_red_3 \n0\n0\n5 0.2067 0 0.0034 0 0", + "Dupont Sky Blue 4": "void plastic dupont_sky_blue_4 \n0\n0\n5 0.0845 0.3537 0.6075 0 0", + "Dupont Blue 5": "void plastic dupont_blue_5 \n0\n0\n5 0 0.1614 0.3639 0 0", + "Dupont Orange 6": "void plastic dupont_orange_6 \n0\n0\n5 0.6407 0.0513 0.0018 0 0", + "Dupont Red 7": "void plastic dupont_red_7 \n0\n0\n5 0.4027 0.0025 0.0019 0 0", + "Dupont Maroon 8": "void plastic dupont_maroon_8 \n0\n0\n5 0.1188 0 0.0049 0 0", + "Dupont Blue 9": "void plastic dupont_blue_9 \n0\n0\n5 0.0378 0.3732 0.5336 0 0", + "Dupont Blue 10": "void plastic dupont_blue_10 \n0\n0\n5 0 0.1526 0.4405 0 0", + "Dupont Red 11": "void plastic dupont_red_11 \n0\n0\n5 0.5144 0.0071 0 0 0", + "Dupont Red 12": "void plastic dupont_red_12 \n0\n0\n5 0.5006 0.001 0 0 0", + "Dupont Dark Maroon 13": "void plastic dupont_dark_maroon_13 \n0\n0\n5 0.0552 0.0021 0.0073 0 0", + "Dupont Sky Blue 14": "void plastic dupont_sky_blue_14 \n0\n0\n5 0.06 0.2843 0.5276 0 0", + "Dupont Dark Blue 15": "void plastic dupont_dark_blue_15 \n0\n0\n5 0.0008 0.0591 0.1955 0 0", + "Dupont Orange Red 16": "void plastic dupont_orange_red_16 \n0\n0\n5 0.5612 0.0239 0 0 0", + "Dupont Red 17": "void plastic dupont_red_17 \n0\n0\n5 0.3878 0 0.0004 0 0", + "Dupont Fuschia 18": "void plastic dupont_fuschia_18 \n0\n0\n5 0.1654 0.0106 0.0837 0 0", + "Dupont Blue 19": "void plastic dupont_blue_19 \n0\n0\n5 0.0064 0.0895 0.2315 0 0", + "Dupont Dark Blue Grey 20": "void plastic dupont_dark_blue_grey_20 \n0\n0\n5 0.0293 0.0608 0.2271 0 0", + "Dupont Red Orange 21": "void plastic dupont_red_orange_21 \n0\n0\n5 0.4969 0.0027 0 0 0", + "Dupont Dark Red Orange 22": "void plastic dupont_dark_red_orange_22 \n0\n0\n5 0.3386 0 0.0024 0 0", + "Dupont Pale Blue 23": "void plastic dupont_pale_blue_23 \n0\n0\n5 0.4083 0.6102 0.6989 0 0", + "Dupont Aquamarine 24": "void plastic dupont_aquamarine_24 \n0\n0\n5 0.0013 0.2904 0.5167 0 0", + "Dupont Dark Blue 25": "void plastic dupont_dark_blue_25 \n0\n0\n5 0 0.0201 0.0946 0 0", + "Dupont Red 26": "void plastic dupont_red_26 \n0\n0\n5 0.4475 0.0024 0 0 0", + "Dupont Red 27": "void plastic dupont_red_27 \n0\n0\n5 0.3339 0 0.0017 0 0", + "Dupont Pale Blue Sky 28": "void plastic dupont_pale_blue_sky_28 \n0\n0\n5 0.1853 0.4566 0.6484 0 0", + "Dupont Darker Blue 29": "void plastic dupont_darker_blue_29 \n0\n0\n5 0 0.1069 0.3064 0 0", + "Dupont Royal Blue 30": "void plastic dupont_royal_blue_30 \n0\n0\n5 0 0.0101 0.0652 0 0", + "Dupont Orange Red 31": "void plastic dupont_orange_red_31 \n0\n0\n5 0.3631 0 0.0041 0 0", + "Dupont Dark Red 32": "void plastic dupont_dark_red_32 \n0\n0\n5 0.2588 0 0.0048 0 0", + "Dupont Sky Blue 33": "void plastic dupont_sky_blue_33 \n0\n0\n5 0.1615 0.4117 0.6231 0 0", + "Dupont Blue 34": "void plastic dupont_blue_34 \n0\n0\n5 0 0.166 0.3982 0 0", + "Dupont Very Dark Blue 35": "void plastic dupont_very_dark_blue_35 \n0\n0\n5 0.0039 0.0074 0.0301 0 0", + "Dupont Very Dark Blue 36": "void plastic dupont_very_dark_blue_36 \n0\n0\n5 0.0019 0.0045 0.0178 0 0", + "Dupont Teal 37": "void plastic dupont_teal_37 \n0\n0\n5 0 0.2482 0.1816 0 0", + "Dupont Light Teal 38": "void plastic dupont_light_teal_38 \n0\n0\n5 0.2685 0.6165 0.2335 0 0", + "Dupont Green 39": "void plastic dupont_green_39 \n0\n0\n5 0.28 0.5037 0.0266 0 0", + "Dupont Pale Yellow 40": "void plastic dupont_pale_yellow_40 \n0\n0\n5 0.6555 0.5347 0.1197 0 0", + "Dupont Very Dark Green 41": "void plastic dupont_very_dark_green_41 \n0\n0\n5 0.0117 0.0192 0.0069 0 0", + "Dupont Dark Green 42": "void plastic dupont_dark_green_42 \n0\n0\n5 0.0645 0.0944 0.0142 0 0", + "Dupont Light Pale Yellow 43": "void plastic dupont_light_pale_yellow_43 \n0\n0\n5 0.5735 0.5906 0.2826 0 0", + "Dupont Light Desaturated Green 44": "void plastic dupont_light_desaturated_green_44 \n0\n0\n5 0.2091 0.1982 0.075 0 0", + "Dupont Desaturated Yellow 45": "void plastic dupont_desaturated_yellow_45 \n0\n0\n5 0.662 0.523 0.1562 0 0", + "Dupont Very Dark Green 46": "void plastic dupont_very_dark_green_46 \n0\n0\n5 0.0012 0.0173 0.0137 0 0", + "Dupont Green 47": "void plastic dupont_green_47 \n0\n0\n5 0.0786 0.1638 0.0469 0 0", + "Dupont Pale Green 48": "void plastic dupont_pale_green_48 \n0\n0\n5 0.5459 0.6735 0.3503 0 0", + "Dupont Light Forest Green 49": "void plastic dupont_light_forest_green_49 \n0\n0\n5 0.2587 0.2836 0.0501 0 0", + "Dupont Dark Yellow 50": "void plastic dupont_dark_yellow_50 \n0\n0\n5 0.3812 0.2312 0.0057 0 0", + "Dupont Dark Green 51": "void plastic dupont_dark_green_51 \n0\n0\n5 0.0027 0.0319 0.0189 0 0", + "Dupont Dark Green 52": "void plastic dupont_dark_green_52 \n0\n0\n5 0 0.0558 0.0219 0 0", + "Dupont Light Teal 53": "void plastic dupont_light_teal_53 \n0\n0\n5 0.0292 0.2936 0.0775 0 0", + "Dupont Yellow Green 54": "void plastic dupont_yellow_green_54 \n0\n0\n5 0.3791 0.5118 0.0907 0 0", + "Dupont Yellow 55": "void plastic dupont_yellow_55 \n0\n0\n5 0.8054 0.6489 0.055 0 0", + "Dupont Forest Green 56": "void plastic dupont_forest_green_56 \n0\n0\n5 0.0537 0.0661 0.0291 0 0", + "Dupont Saturated Green 57": "void plastic dupont_saturated_green_57 \n0\n0\n5 0 0.1862 0.0531 0 0", + "Dupont Bright Yellow Green 58": "void plastic dupont_bright_yellow_green_58 \n0\n0\n5 0.1342 0.4029 0 0 0", + "Dupont Yellow 59": "void plastic dupont_yellow_59 \n0\n0\n5 0.6347 0.5907 0.0701 0 0", + "Dupont Dark Yellow 60": "void plastic dupont_dark_yellow_60 \n0\n0\n5 0.6659 0.4452 0 0 0", + "Dupont Dark Green 61": "void plastic dupont_dark_green_61 \n0\n0\n5 0 0.0723 0.0196 0 0", + "Dupont Dark Green 62": "void plastic dupont_dark_green_62 \n0\n0\n5 0.014 0.1042 0.0215 0 0", + "Dupont Yellow Green 63": "void plastic dupont_yellow_green_63 \n0\n0\n5 0.1309 0.402 0.0279 0 0", + "Dupont Very Light Yellow 64": "void plastic dupont_very_light_yellow_64 \n0\n0\n5 0.7739 0.807 0.4004 0 0", + "Dupont Yellow 65": "void plastic dupont_yellow_65 \n0\n0\n5 0.85 0.6412 0.0505 0 0", + "Dupont Dark Teal 66": "void plastic dupont_dark_teal_66 \n0\n0\n5 0 0.293 0.151 0 0", + "Dupont Green 67": "void plastic dupont_green_67 \n0\n0\n5 0.014 0.1518 0.0188 0 0", + "Dupont Yellow Green 68": "void plastic dupont_yellow_green_68 \n0\n0\n5 0.1308 0.4207 0.024 0 0", + "Dupont Yellow 69": "void plastic dupont_yellow_69 \n0\n0\n5 0.7187 0.603 0.1013 0 0", + "Dupont Yellow 70": "void plastic dupont_yellow_70 \n0\n0\n5 0.8204 0.5671 0.0049 0 0", + "Dupont Dark Yellow 71": "void plastic dupont_dark_yellow_71 \n0\n0\n5 0.8878 0.4893 0 0 0", + "Dupont Dark Yellow 72": "void plastic dupont_dark_yellow_72 \n0\n0\n5 0.9134 0.422 0 0 0", + "Dupont Orange 73": "void plastic dupont_orange_73 \n0\n0\n5 0.5392 0.0616 0 0 0", + "Dupont Neutral Clay 74": "void plastic dupont_neutral_clay_74 \n0\n0\n5 0.3928 0.2891 0.1434 0 0", + "Dupont Off White 75": "void plastic dupont_off_white_75 \n0\n0\n5 0.5318 0.4873 0.3608 0 0", + "Dupont Yellow 76": "void plastic dupont_yellow_76 \n0\n0\n5 0.822 0.5205 0 0 0", + "Dupont Dark Yellow 77": "void plastic dupont_dark_yellow_77 \n0\n0\n5 0.8552 0.3149 0 0 0", + "Dupont Red Orange 78": "void plastic dupont_red_orange_78 \n0\n0\n5 0.394 0.0299 0 0 0", + "Dupont Dark Desaturated Yellow 79": "void plastic dupont_dark_desaturated_yellow_79 \n0\n0\n5 0.4761 0.231 0.0136 0 0", + "Dupont White 80": "void plastic dupont_white_80 \n0\n0\n5 0.8214 0.7778 0.5981 0 0", + "Dupont Yellow 81": "void plastic dupont_yellow_81 \n0\n0\n5 0.8144 0.5668 0 0 0", + "Dupont Yellow Orange 82": "void plastic dupont_yellow_orange_82 \n0\n0\n5 0.8302 0.2855 0 0 0", + "Dupont Brown 83": "void plastic dupont_brown_83 \n0\n0\n5 0.0612 0.0245 0.01 0 0", + "Dupont Yellow 84": "void plastic dupont_yellow_84 \n0\n0\n5 0.7188 0.3281 0 0 0", + "Dupont Bright White 85": "void plastic dupont_bright_white_85 \n0\n0\n5 0.7718 0.787 0.7079 0 0", + "Dupont Yellow 86": "void plastic dupont_yellow_86 \n0\n0\n5 0.9146 0.715 0.0374 0 0", + "Dupont Orange 87": "void plastic dupont_orange_87 \n0\n0\n5 0.8087 0.1932 0 0 0", + "Dupont Dark Brown 88": "void plastic dupont_dark_brown_88 \n0\n0\n5 0.0412 0.0235 0.0126 0 0", + "Dupont Yolk Yellow 89": "void plastic dupont_yolk_yellow_89 \n0\n0\n5 0.6438 0.3872 0.0618 0 0", + "Dupont Off White 90": "void plastic dupont_off_white_90 \n0\n0\n5 0.8325 0.7795 0.5957 0 0", + "Dupont Yellow 91": "void plastic dupont_yellow_91 \n0\n0\n5 0.8662 0.7002 0.0634 0 0", + "Dupont Orange 92": "void plastic dupont_orange_92 \n0\n0\n5 0.6665 0.1121 0 0 0", + "Dupont Light Brown 93": "void plastic dupont_light_brown_93 \n0\n0\n5 0.1626 0.0518 0.012 0 0", + "Dupont Yellow 94": "void plastic dupont_yellow_94 \n0\n0\n5 0.7277 0.5986 0.1595 0 0", + "Dupont White 95": "void plastic dupont_white_95 \n0\n0\n5 0.8723 0.838 0.7341 0 0", + "Dupont Yellow 96": "void plastic dupont_yellow_96 \n0\n0\n5 0.8612 0.7508 0.1687 0 0", + "Dupont Orange 97": "void plastic dupont_orange_97 \n0\n0\n5 0.7572 0.1124 0 0 0", + "Dupont Light Brown 98": "void plastic dupont_light_brown_98 \n0\n0\n5 0.2918 0.1722 0.0922 0 0", + "Dupont Pale Yellow 99": "void plastic dupont_pale_yellow_99 \n0\n0\n5 0.8146 0.6978 0.3362 0 0", + "Dupont Off White 100": "void plastic dupont_off_white_100 \n0\n0\n5 0.8641 0.8364 0.6571 0 0", + "Dupont Pale Yellow 101": "void plastic dupont_pale_yellow_101 \n0\n0\n5 0.849 0.7897 0.3175 0 0", + "Dupont Saturated Orange 102": "void plastic dupont_saturated_orange_102 \n0\n0\n5 0.6258 0.082 0 0 0", + "Dupont Light Brown 103": "void plastic dupont_light_brown_103 \n0\n0\n5 0.3301 0.1765 0.0641 0 0", + "Dupont Desaturated Yellow 104": "void plastic dupont_desaturated_yellow_104 \n0\n0\n5 0.6369 0.5583 0.3189 0 0", + "Dupont White 105": "void plastic dupont_white_105 \n0\n0\n5 0.7371 0.7258 0.6243 0 0", + "Dupont White 106": "void plastic dupont_white_106 \n0\n0\n5 0.8607 0.8649 0.7808 0 0", + "Dupont White 107": "void plastic dupont_white_107 \n0\n0\n5 0.8125 0.8401 0.791 0 0", + "Dupont White Blue 108": "void plastic dupont_white_blue_108 \n0\n0\n5 0.613 0.7463 0.7716 0 0", + "Dupont Desaturated White Blue 109": "void plastic dupont_desaturated_white_blue_109 \n0\n0\n5 0.481 0.5162 0.5155 0 0", + "Dupont Dark Blue Grey 110": "void plastic dupont_dark_blue_grey_110 \n0\n0\n5 0.0876 0.1037 0.1032 0 0", + "Dupont White 111": "void plastic dupont_white_111 \n0\n0\n5 0.8001 0.8168 0.7609 0 0", + "Dupont White 112": "void plastic dupont_white_112 \n0\n0\n5 0.7325 0.764 0.7247 0 0", + "Dupont White 113": "void plastic dupont_white_113 \n0\n0\n5 0.6891 0.7572 0.7711 0 0", + "Dupont Dirty White 114": "void plastic dupont_dirty_white_114 \n0\n0\n5 0.3327 0.3475 0.3101 0 0", + "Dupont Very Dark Blue 115": "void plastic dupont_very_dark_blue_115 \n0\n0\n5 0.0029 0.0051 0.0187 0 0", + "Dupont Off White 116": "void plastic dupont_off_white_116 \n0\n0\n5 0.8638 0.8468 0.7264 0 0", + "Dupont White 117": "void plastic dupont_white_117 \n0\n0\n5 0.7389 0.7808 0.7177 0 0", + "Dupont Dirty White 118": "void plastic dupont_dirty_white_118 \n0\n0\n5 0.4648 0.4831 0.4303 0 0", + "Dupont Desaturated Blue 119": "void plastic dupont_desaturated_blue_119 \n0\n0\n5 0.1904 0.2246 0.2409 0 0", + "Dupont Midnight Black 120": "void plastic dupont_midnight_black_120 \n0\n0\n5 0.0029 0.0034 0.0044 0 0", + "Munsell 10Yr 8/10": "void plastic munsell_10yr_8/10 \n0\n0\n5 0.9097 0.502 0.0656 0 0", + "Munsell N 2.5": "void plastic munsell_n_2.5 \n0\n0\n5 0.0242 0.0244 0.0257 0 0", + "Munsell Mcc Magenta (2.5Rp 5/12)": "void plastic munsell_mcc_magenta_(2.5rp_5/12) \n0\n0\n5 0.452 0.0854 0.3102 0 0", + "Munsell 5Y 8/10": "void plastic munsell_5y_8/10 \n0\n0\n5 0.7405 0.5677 0.0209 0 0", + "Munsell 2.5Yr 5/6": "void plastic munsell_2.5yr_5/6 \n0\n0\n5 0.3647 0.1393 0.0697 0 0", + "Munsell N9.5": "void plastic munsell_n9.5 \n0\n0\n5 0.8675 0.8814 0.8699 0 0", + "Munsell Mcc Cyan (5B 5/8)": "void plastic munsell_mcc_cyan_(5b_5/8) \n0\n0\n5 0.0011 0.2368 0.3818 0 0", + "Munsell 10Rp 5/12": "void plastic munsell_10rp_5/12 \n0\n0\n5 0.5771 0.0712 0.1505 0 0", + "Munsell 5R 5/12": "void plastic munsell_5r_5/12 \n0\n0\n5 0.5806 0.0614 0.0729 0 0", + "Munsell 10B 6/10": "void plastic munsell_10b_6/10 \n0\n0\n5 0.05 0.3503 0.6846 0 0", + "Munsell 10G 7/8": "void plastic munsell_10g_7/8 \n0\n0\n5 0.1098 0.5584 0.376 0 0", + "Munsell N 4.0": "void plastic munsell_n_4.0 \n0\n0\n5 0.1111 0.1136 0.115 0 0", + "Munsell Mcc Bluesky (4.3Pb 4.95/5.5)": "void plastic munsell_mcc_bluesky_(4.3pb_4.95/5.5) \n0\n0\n5 0.1229 0.2038 0.3639 0 0", + "Munsell Mcc Foliage (6.7Gy 4.2/4.1)": "void plastic munsell_mcc_foliage_(6.7gy_4.2/4.1) \n0\n0\n5 0.0957 0.1486 0.0386 0 0", + "Munsell 7.5R 4/12": "void plastic munsell_7.5r_4/12 \n0\n0\n5 0.3832 0.0382 0.0299 0 0", + "Munsell 7.5Yr 6/4": "void plastic munsell_7.5yr_6/4 \n0\n0\n5 0.4178 0.2674 0.1542 0 0", + "Munsell N 5.5": "void plastic munsell_n_5.5 \n0\n0\n5 0.2338 0.2406 0.245 0 0", + "Munsell 10Y 5/6": "void plastic munsell_10y_5/6 \n0\n0\n5 0.2002 0.2004 0.0246 0 0", + "Munsell Mcc Blueflower (9.7Pb 5.47/6.7)": "void plastic munsell_mcc_blueflower_(9.7pb_5.47/6.7) \n0\n0\n5 0.2286 0.2171 0.4545 0 0", + "Munsell 2.5R 6/12": "void plastic munsell_2.5r_6/12 \n0\n0\n5 0.7351 0.1417 0.1805 0 0", + "Munsell 5Yr 7/10": "void plastic munsell_5yr_7/10 \n0\n0\n5 0.798 0.3124 0.0743 0 0", + "Munsell N 8.25": "void plastic munsell_n_8.25 \n0\n0\n5 0.6139 0.6308 0.6416 0 0", + "Munsell 10Bg 8/4": "void plastic munsell_10bg_8/4 \n0\n0\n5 0.3449 0.673 0.6943 0 0", + "Munsell 10Pb 8/4": "void plastic munsell_10pb_8/4 \n0\n0\n5 0.5663 0.5657 0.7835 0 0", + "Munsell 10Y 8/10": "void plastic munsell_10y_8/10 \n0\n0\n5 0.6273 0.6009 0.0216 0 0", + "Munsell 2.5Yr 6/14": "void plastic munsell_2.5yr_6/14 \n0\n0\n5 0.718 0.1652 0.0049 0 0", + "Munsell N3.0": "void plastic munsell_n3.0 \n0\n0\n5 0.0641 0.065 0.0657 0 0", + "Munsell 2.5Yr 5/4": "void plastic munsell_2.5yr_5/4 \n0\n0\n5 0.3087 0.1533 0.1004 0 0", + "Munsell 10P 8/4": "void plastic munsell_10p_8/4 \n0\n0\n5 0.6874 0.5306 0.6723 0 0", + "Munsell 10Gy 5/8": "void plastic munsell_10gy_5/8 \n0\n0\n5 0.0671 0.2496 0.0464 0 0", + "Munsell 7.5R 3/4": "void plastic munsell_7.5r_3/4 \n0\n0\n5 0.1319 0.0431 0.0376 0 0", + "Munsell N4.75": "void plastic munsell_n4.75 \n0\n0\n5 0.1693 0.177 0.1831 0 0", + "Munsell 5R 4/14": "void plastic munsell_5r_4/14 \n0\n0\n5 0.4195 0.007 0.0325 0 0", + "Munsell 10B 3/6": "void plastic munsell_10b_3/6 \n0\n0\n5 0.0148 0.0706 0.1505 0 0", + "Munsell 5Rp 7/8": "void plastic munsell_5rp_7/8 \n0\n0\n5 0.7216 0.3065 0.4589 0 0", + "Munsell 7.5 Pb 6/8": "void plastic munsell_7.5_pb_6/8 \n0\n0\n5 0.2408 0.2759 0.5993 0 0", + "Munsell 5Pb 4/10": "void plastic munsell_5pb_4/10 \n0\n0\n5 0.0287 0.1197 0.3787 0 0", + "Munsell N 2.0": "void plastic munsell_n_2.0 \n0\n0\n5 0.0258 0.0272 0.0288 0 0", + "Munsell 7.5R 5/12": "void plastic munsell_7.5r_5/12 \n0\n0\n5 0.7527 0.1354 0.0815 0 0", + "Munsell 5Gy 8/10": "void plastic munsell_5gy_8/10 \n0\n0\n5 0.4547 0.6618 0.0329 0 0", + "Munsell Mcc N5.0 (N 5/ )": "void plastic munsell_mcc_n5.0_(n_5/_) \n0\n0\n5 0.192 0.1961 0.1994 0 0", + "Munsell 5Bg 5/8": "void plastic munsell_5bg_5/8 \n0\n0\n5 0 0.267 0.2333 0 0", + "Munsell 10Gy 6/10": "void plastic munsell_10gy_6/10 \n0\n0\n5 0.0973 0.3739 0.0568 0 0", + "Munsell N 3.5": "void plastic munsell_n_3.5 \n0\n0\n5 0.088 0.0902 0.0948 0 0", + "Munsell 7.5Y 9/6": "void plastic munsell_7.5y_9/6 \n0\n0\n5 0.869 0.8048 0.2602 0 0", + "Munsell 7.5Yr 4/4": "void plastic munsell_7.5yr_4/4 \n0\n0\n5 0.193 0.0972 0.0394 0 0", + "Munsell 5Y 8.5/12": "void plastic munsell_5y_8.5/12 \n0\n0\n5 0.8914 0.6685 0 0 0", + "Munsell Mcc Blue (7.5Pb 2.9/12.7)": "void plastic munsell_mcc_blue_(7.5pb_2.9/12.7) \n0\n0\n5 0.0305 0.0498 0.305 0 0", + "Munsell 2.5Y 8/2": "void plastic munsell_2.5y_8/2 \n0\n0\n5 0.6319 0.5818 0.4224 0 0", + "Munsell N 7.25": "void plastic munsell_n_7.25 \n0\n0\n5 0.4485 0.4579 0.4667 0 0", + "Munsell 10R 6/12": "void plastic munsell_10r_6/12 \n0\n0\n5 0.7434 0.1445 0.0414 0 0", + "Munsell Mcc Lightskin (2.2Yr 6.47/4.1)": "void plastic munsell_mcc_lightskin_(2.2yr_6.47/4.1) \n0\n0\n5 0.5465 0.3125 0.226 0 0", + "Munsell 2.5G 5/10": "void plastic munsell_2.5g_5/10 \n0\n0\n5 0.003 0.2763 0.0668 0 0", + "Munsell 5P 5/10": "void plastic munsell_5p_5/10 \n0\n0\n5 0.2899 0.1352 0.4208 0 0", + "Munsell 5R 4/12": "void plastic munsell_5r_4/12 \n0\n0\n5 0.4158 0.0182 0.0423 0 0", + "Munsell Mcc Darkskin (3Yr 3.7/3.2)": "void plastic munsell_mcc_darkskin_(3yr_3.7/3.2) \n0\n0\n5 0.1683 0.083 0.0546 0 0", + "Munsell 10Yr 7/12": "void plastic munsell_10yr_7/12 \n0\n0\n5 0.7318 0.3537 0 0 0", + "Munsell 2.5 Pb 5/10": "void plastic munsell_2.5_pb_5/10 \n0\n0\n5 0.0354 0.2156 0.5272 0 0", + "Munsell 5G 5/6": "void plastic munsell_5g_5/6 \n0\n0\n5 0.061 0.2444 0.1284 0 0", + "Munsell 7.5Rp 4/10": "void plastic munsell_7.5rp_4/10 \n0\n0\n5 0.3259 0.0409 0.1183 0 0", + "Munsell N 6.25": "void plastic munsell_n_6.25 \n0\n0\n5 0.318 0.3259 0.3311 0 0", + "Munsell 5Pb 3/6": "void plastic munsell_5pb_3/6 \n0\n0\n5 0.0281 0.0688 0.1824 0 0", + "Munsell 2.5Pb 8/4": "void plastic munsell_2.5pb_8/4 \n0\n0\n5 0.4574 0.6033 0.7883 0 0", + "Munsell 5G 3/4": "void plastic munsell_5g_3/4 \n0\n0\n5 0.0343 0.0821 0.0553 0 0", + "Macbeth Dark Skin": "void plastic macbeth_dark_skin \n0\n0\n5 0.168 0.0698 0.0308 0 0", + "Macbeth Light Skin": "void plastic macbeth_light_skin \n0\n0\n5 0.6373 0.3358 0.2529 0 0", + "Macbeth Blue Sky": "void plastic macbeth_blue_sky \n0\n0\n5 0.1196 0.1901 0.3467 0 0", + "Macbeth Foliage": "void plastic macbeth_foliage \n0\n0\n5 0.0696 0.1317 0.027 0 0", + "Macbeth Blue Flower": "void plastic macbeth_blue_flower \n0\n0\n5 0.2798 0.2162 0.4534 0 0", + "Macbeth Bluish Green": "void plastic macbeth_bluish_green \n0\n0\n5 0.1591 0.4916 0.4558 0 0", + "Macbeth Orange": "void plastic macbeth_orange \n0\n0\n5 0.6824 0.2639 0.0019 0 0", + "Macbeth Purplish Blue": "void plastic macbeth_purplish_blue \n0\n0\n5 0.0806 0.0875 0.3695 0 0", + "Macbeth Moderate Red": "void plastic macbeth_moderate_red \n0\n0\n5 0.5951 0.1151 0.1191 0 0", + "Macbeth Purple": "void plastic macbeth_purple \n0\n0\n5 0.1173 0.0313 0.122 0 0", + "Macbeth Yellow Green": "void plastic macbeth_yellow_green \n0\n0\n5 0.3167 0.5103 0.0567 0 0", + "Macbeth Orange Yellow": "void plastic macbeth_orange_yellow \n0\n0\n5 0.7282 0.4222 0.0061 0 0", + "Macbeth Blue": "void plastic macbeth_blue \n0\n0\n5 0.0408 0.034 0.2981 0 0", + "Macbeth Green": "void plastic macbeth_green \n0\n0\n5 0.0486 0.3034 0.0781 0 0", + "Macbeth Red": "void plastic macbeth_red \n0\n0\n5 0.5345 0.0273 0.0338 0 0", + "Macbeth Yellow": "void plastic macbeth_yellow \n0\n0\n5 0.8205 0.6444 0 0 0", + "Macbeth Magenta": "void plastic macbeth_magenta \n0\n0\n5 0.5741 0.0939 0.286 0 0", + "Macbeth Cyan": "void plastic macbeth_cyan \n0\n0\n5 0.0114 0.2047 0.4183 0 0", + "Macbeth White": "void plastic macbeth_white \n0\n0\n5 0.9193 0.9187 0.8881 0 0", + "Macbeth Neutral 0.8": "void plastic macbeth_neutral_0.8 \n0\n0\n5 0.6021 0.6063 0.5981 0 0", + "Macbeth Neutral 0.65": "void plastic macbeth_neutral_0.65 \n0\n0\n5 0.361 0.3664 0.3608 0 0", + "Macbeth Neutral 0.5": "void plastic macbeth_neutral_0.5 \n0\n0\n5 0.2008 0.2005 0.1953 0 0", + "Macbeth Neutral 0.35": "void plastic macbeth_neutral_0.35 \n0\n0\n5 0.0888 0.0877 0.0853 0 0", + "Macbeth Black": "void plastic macbeth_black \n0\n0\n5 0.0309 0.0308 0.0304 0 0" + } +} diff --git a/src/blenderbim/blenderbim/bim/module/light/ui.py b/src/blenderbim/blenderbim/bim/module/light/ui.py index 77e12c8b77..f2c16e6334 100644 --- a/src/blenderbim/blenderbim/bim/module/light/ui.py +++ b/src/blenderbim/blenderbim/bim/module/light/ui.py @@ -55,15 +55,29 @@ class BIM_PT_radiance_exporter(bpy.types.Panel): if props.use_json_file: row = layout.row() row.prop(props, "json_file") - else: - # Material Mappings UI - layout.label(text="Material Mappings:") - for item in props.material_mappings: - row = layout.row(align=True) - row.label(text=item.name) - row.prop(item, '["radiance_material"]', text="") - layout.operator("bim.refresh_ifc_materials") + if not props.use_json_file: + row = layout.row() + layout.label(text="Info: Unmapped materials default to white") + row = layout.row() + row.template_list("MATERIAL_UL_radiance_materials", "", props, "materials", props, "active_material_index") + + if len(props.materials) > 0: + col = layout.column(align=True) + col.prop(props, "category") + if props.category: + col.prop(props, "subcategory") + + if props.active_material_index >= 0 and props.active_material_index < len(props.materials): + active_material = props.materials[props.active_material_index] + if active_material.category and active_material.subcategory: + layout.label(text=f"Mapped: {active_material.name} to {active_material.category} - {active_material.subcategory}") + else: + layout.label(text=f"Select category and subcategory for: {active_material.name}") + + row = layout.row() + row.operator("bim.refresh_ifc_materials", text="Refresh IFC Materials") + layout.separator() row = layout.row() @@ -95,8 +109,9 @@ class BIM_PT_radiance_exporter(bpy.types.Panel): row = layout.row() row.prop(props, "use_hdr") - row = layout.row() - row.prop(props, "choose_hdr_image") + if props.use_hdr: + row = layout.row() + row.prop(props, "choose_hdr_image") row = layout.row() row.operator("export_scene.radiance", text="Export Geometry for Simulation")