File size: 1,798 Bytes
176e58e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
925052f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
license: mit
pretty_name: MatPredict
task_categories:
- image-to-image
- image-segmentation
tags:
- synthetic-data
- inverse-rendering
- material-segmentation
- material-properties
- pbr
- robotics
- indoor-scenes
---

# MatPredict

MatPredict is a synthetic dataset for material-centric scene understanding. It supports two main tasks:

1. **Inverse rendering**: predict material properties such as albedo, roughness, and metallic maps from RGB images.
2. **Material segmentation**: predict material regions or material classes from RGB images.

The dataset contains rendered object variants with paired RGB images, material property maps, segmentation labels, camera transforms, and metadata.

## Dataset Structure

```text
MatPredict/
  material_segmentation_map.yaml
  config/
    object_disjoint_v1.yaml
    variance_disjoint_v1.yaml

  <object_name>/
    <variant_name>/
      images/        # RGB input images
      albedo/        # base color targets
      ORM/           # packed material map; roughness=G, metallic=B
      label/         # material segmentation labels
      depth/
      normal_mat/
      normal_obj/
      transforms.json
      metadata.json
      material_segmentation_map.json
```

## Tasks

### Inverse Rendering

Input:

```text
images/*.png
```

Targets:

```text
albedo/*.png
ORM/*.png
```

### Material Segmentation

Input:

```text
images/*.png
```

Target:

```text
label/*.png
```

## Splits

The dataset includes two split files:

- `config/object_disjoint_v1.yaml`: train, validation, and test sets use disjoint object identities.
- `config/variance_disjoint_v1.yaml`: train, validation, and test sets use disjoint material/rendering variants.

Both split files store relative sample ids in the form:

```text
<object_name>/<variant_name>/<frame_id>
```