Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,68 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: bsd
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: bsd
|
| 3 |
+
---
|
| 4 |
+
# NeuMERL
|
| 5 |
+
|
| 6 |
+
The Augmented Neural MERL (NeuMERL) dataset adopted in the paper [NeuMaDiff: Neural Material Synthesis via Hyperdiffusion](https://arxiv.org/abs/2411.12015).
|
| 7 |
+
|
| 8 |
+
First, we augment the [MERL dataset](https://www.merl.com/research/downloads/BRDF) through RGB permutation and direct or PCA interpolation, generating the Augmented MERL (AugMERL) dataset (Sec. 3.1).
|
| 9 |
+
Next, we adopt neural fields as a low-dimensional, continuous representation for materials,
|
| 10 |
+
fitting them to individual materials in Aug-MERL to create a new dataset of neural material representations, Neural MERL (NeuMERL).
|
| 11 |
+
|
| 12 |
+
## Dataset formation
|
| 13 |
+
|
| 14 |
+
The dataset released here contains 2400 BRDFs. The formation is described as follows:
|
| 15 |
+
|
| 16 |
+
To form the AugMERL dataset, we first augment the original MERL dataset with color channel permutation. The first group materials (1-600) are all without interpolation. Then, we augment the BRDFs via direct linear interpolation, forming three groups of materials (601-1200, 1201-1800, 1801-2400), where each group follows the same color channel permutation as the first group.
|
| 17 |
+
|
| 18 |
+
The AugMERL dataset is then used to train the neural fields, forming the NeuMERL dataset.
|
| 19 |
+
|
| 20 |
+
## Color channel permutation
|
| 21 |
+
|
| 22 |
+
Color channel permutation: RGB (1-100), RBG (101-200), GRB (201-300), GBR (301-400), BRG (401-500), GRB (501-600).
|
| 23 |
+
|
| 24 |
+
```
|
| 25 |
+
rgb_type = file_index % 6
|
| 26 |
+
if rgb_type == 1:
|
| 27 |
+
brdf = brdf[..., [0, 1, 2]] # merl_1
|
| 28 |
+
elif rgb_type == 2:
|
| 29 |
+
brdf = brdf[..., [0, 2, 1]] # merl_2
|
| 30 |
+
elif rgb_type == 3:
|
| 31 |
+
brdf = brdf[..., [1, 0, 2]] # merl_3
|
| 32 |
+
elif rgb_type == 4:
|
| 33 |
+
brdf = brdf[..., [1, 2, 0]] # merl_4
|
| 34 |
+
elif rgb_type == 5:
|
| 35 |
+
brdf = brdf[..., [2, 0, 1]] # merl_5
|
| 36 |
+
elif rgb_type == 0:
|
| 37 |
+
brdf = brdf[..., [2, 1, 0]] # merl_6
|
| 38 |
+
return brdf
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
## BRDF interpolation
|
| 42 |
+
|
| 43 |
+
Please refer to `interpolate_interpolation_{i}.txt`, each line is in the format of
|
| 44 |
+
|
| 45 |
+
```
|
| 46 |
+
MERL_BRDF1_name MERL_BRDF2_name \alpha
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
, where $\alpha \in [0.3, 0.7]$ is the linear interpolation coefficient, outputting the interpolated BRDF
|
| 50 |
+
|
| 51 |
+
$$
|
| 52 |
+
f^{*}_r = \alpha \times f^{1}_r + (1-\alpha) \times f^{2}_r
|
| 53 |
+
$$
|
| 54 |
+
|
| 55 |
+
## Citation
|
| 56 |
+
|
| 57 |
+
```
|
| 58 |
+
@misc{
|
| 59 |
+
NeuMaDiff2024,
|
| 60 |
+
title={NeuMaDiff: Neural Material Synthesis via Hyperdiffusion},
|
| 61 |
+
author={Chenliang Zhou and Zheyuan Hu and Alejandro Sztrajman and Yancheng Cai and Yaru Liu and Cengiz Oztireli},
|
| 62 |
+
year={2024},
|
| 63 |
+
eprint={2411.12015},
|
| 64 |
+
archivePrefix={arXiv},
|
| 65 |
+
primaryClass={cs.GR},
|
| 66 |
+
url={https://arxiv.org/abs/2411.12015},
|
| 67 |
+
}
|
| 68 |
+
```
|