yueyin27 commited on
Commit
0f33bd8
·
verified ·
1 Parent(s): 321b381

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -8
README.md CHANGED
@@ -51,10 +51,10 @@ RefRef_Dataset/
51
  ## Object and Scenes
52
 
53
  The dataset includes 50 objects categorised into four groups based on their complexity, material composition, and shape:
54
- 1. **simple_shapes**: Basic geometries with single material.
55
- 2. **complex_shapes**: Intricate geometries with single material, such as sculptures.
56
- 3. **household_items**: Objects with potentially mixed materials, including items like wine glasses, plastic bottles, and teapots.
57
- 4. **lab_equipment**: Laboratory objects that may include single and multi-material compositions, such as beakers and test tubes.
58
 
59
  Each object is placed in two distinct scenes:
60
  - `textured_cube_scene/`: Objects placed within a textured cube environment.
@@ -62,13 +62,14 @@ Each object is placed in two distinct scenes:
62
 
63
  ## IoR Information
64
 
65
- A single JSON file, `IoR_info.json`, will be provided in the `dataset_info/` directory. This file maps each object (by filename) to its Index of Refraction (IoR) values. This helps in identifying the IoR for each `.ply` file in `mesh_files`.
66
 
67
  Example format for `IoR_info.json`:
68
  ```json
69
  {
70
- "cube.ply": {"IoR": 1.5},
71
- "diamond.ply": {"IoR": 2.4},
72
- "wine_glass_with_wine.ply": {"IoR": {"glass": 1.5, "wine": 1.33}},
 
73
  ...
74
  }
 
51
  ## Object and Scenes
52
 
53
  The dataset includes 50 objects categorised into four groups based on their complexity, material composition, and shape:
54
+ - `simple_shapes/`: Basic geometries with single material.
55
+ - `complex_shapes/`: Intricate geometries with single material, such as sculptures.
56
+ - `household_items/`: Objects with single or multiple materials, including items like wine glasses, plastic bottles, and teapots.
57
+ - `lab_equipment/`: Laboratory objects that include single and multi-material compositions, such as beakers and test tubes.
58
 
59
  Each object is placed in two distinct scenes:
60
  - `textured_cube_scene/`: Objects placed within a textured cube environment.
 
62
 
63
  ## IoR Information
64
 
65
+ A single JSON file `IoR_info.json` is be provided in the `dataset_info/` directory, which maps each component of each object to its Index of Refraction (IoR) values.
66
 
67
  Example format for `IoR_info.json`:
68
  ```json
69
  {
70
+ "cube": 1.5,
71
+ "diamond": 2.418,
72
+ "wine_glass": {{"glass": 1.5, "alcohol": 1.36},
73
+ "water_pitcher": {"glass": 1.5, "water": 1.333, "ice": 1.309}
74
  ...
75
  }