Datasets:

Modalities:
Image
Languages:
English
ArXiv:
Tags:
code
License:
yueyin27 commited on
Commit
a0ff790
·
verified ·
1 Parent(s): 545b5d4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -49
README.md CHANGED
@@ -32,55 +32,18 @@ dataset_info:
32
  dataset_size: 673141617.0
33
 
34
  ---
35
- # RefRef: A Synthetic Dataset and Benchmark for Reconstructing Refractive and Reflective Objects
36
 
37
- ## Overview
38
- **RefRef** is a synthetic dataset and benchmark designed for the task of reconstructing scenes with complex refractive and reflective objects. Our dataset consists of 50 objects categorized based on their geometric and material complexity: single-material convex objects, single-material non-convex objects, and multi-material non-convex objects, where the materials have different colors, opacities, and refractive indices.
39
- Each object is placed in two distinct bounded environments and one unbounded environment, resulting in 150 unique scenes with diverse geometries, material properties, and backgrounds.
40
- Our dataset provides a controlled setting for evaluating and developing 3D reconstruction and novel view synthesis methods that handle complex optical effects.
41
-
42
- ## Directory Structure
43
-
44
- ```plaintext
45
- RefRef_Dataset/
46
- ├── README.md
47
- ├── dataset_info/ # Metadata and dataset description files
48
- │ ├── scene_list.txt
49
- │ └── object_materials.json # IoR values mapped to each object
50
- ├── image_data/ # Rendered images, depth maps, and masks for each object
51
- │ ├── textured_cube_scene/
52
- │ │ └── {single-material_convex, single-material_non-convex, multiple-materials_non-convex}/
53
- │ │ └── {object_name}/
54
- │ │ ├── train/ # Training set
55
- │ │ │ ├── r_0.png # RGB image
56
- │ │ │ ├── r_0_depth_0000.png # Depth map
57
- │ │ │ ├── r_0_mask_0000.png # Mask
58
- │ │ │ ├── r_1.png
59
- │ │ │ ├── r_1_depth_0000.png
60
- │ │ │ ├── r_1_mask_0000.png
61
- │ │ │ └── ...
62
- │ │ ├── val/ # Validation set
63
- │ │ ├── test/ # Testing set
64
- │ │ ├── transforms_train.json
65
- │ │ ├── transforms_val.json
66
- │ │ └── transforms_test.json
67
- │ ├── textured_sphere_scene/
68
- │ │ └── ...
69
- │ ├── environment_map_scene/
70
- │ └── ...
71
- └── mesh_files/ # 3D mesh files (.ply format) for each object
72
- └── {single-material_convex, single-material_non-convex, multiple-materials_non-convex}/
73
- └── ...
74
  ```
75
 
76
- ## Object and Scenes
77
-
78
- The dataset includes 50 objects categorised into four groups based on their complexity, material composition, and shape:
79
- - `single-convex/`(27 scenes): Objects with convex geometries, each composed of a single refractive material, such as transparent cubes, balls, and pyramids.
80
- - `single-non-convex/`(60 scenes): Objects with non-convex geometries, each composed of a single refractive material, such as animal sculptures, glass jars, light bulbs, candle holders, and magnifiers.
81
- - `multiple-non-convex/`(63 scenes): Objects with non-convex geometries, each composed of multiple refractive materials or a combination of refractive and opaque materials, such as reed diffusers, a glass of wine, and flasks filled with chemical liquid.
82
-
83
- Each object is placed in two distinct scenes:
84
- - `textured_cube_scene/`: Objects placed within a bounded textured cube environment.
85
- - `textured_sphere_scene/`: Objects placed within a bounded textured sphere environment.
86
- - `environment_map_scene/`: Objects placed in an unbounded environment map background.
 
32
  dataset_size: 673141617.0
33
 
34
  ---
35
+ ## This repository provides additional data for: [RefRef: A Synthetic Dataset and Benchmark for Reconstructing Refractive and Reflective Objects](https://huggingface.co/datasets/yinyue27/RefRef)
36
 
37
+ ## Citation
38
+ ```
39
+ @misc{yin2025refrefsyntheticdatasetbenchmark,
40
+ title={RefRef: A Synthetic Dataset and Benchmark for Reconstructing Refractive and Reflective Objects},
41
+ author={Yue Yin and Enze Tao and Weijian Deng and Dylan Campbell},
42
+ year={2025},
43
+ eprint={2505.05848},
44
+ archivePrefix={arXiv},
45
+ primaryClass={cs.CV},
46
+ url={https://arxiv.org/abs/2505.05848},
47
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ```
49