Diffusers
Safetensors
zeyuren2002 commited on
Commit
87a49e9
·
verified ·
1 Parent(s): 40a3ea8

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. Edit2Perceive/utils/visualize.py +54 -0
  2. Edit2Perceive/vram_management/__init__.py +2 -0
  3. Edit2Perceive/vram_management/gradient_checkpointing.py +34 -0
  4. Edit2Perceive/vram_management/layers.py +213 -0
  5. Lotus-2/.gitignore +7 -0
  6. Lotus-2/LICENSE +201 -0
  7. Lotus-2/README.md +100 -0
  8. Lotus-2/app.py +104 -0
  9. Lotus-2/assets/badges/lotus_icon.png +0 -0
  10. Lotus-2/assets/demo_examples/depth/19.jpg +0 -0
  11. Lotus-2/assets/demo_examples/normal/flux1-dev_an-artistic-glass-vase-with-an-embossed (2).jpg +0 -0
  12. Lotus-2/assets/demo_examples/normal/photo-1549127024-5f213d45604a.png +0 -0
  13. Lotus-2/assets/in-the-wild_examples/flux1-dev_an-artistic-glass-vase-with-an-embossed (2).jpg +0 -0
  14. Lotus-2/assets/in-the-wild_examples/photo-1549127024-5f213d45604a.png +0 -0
  15. Lotus-2/datasets/eval/depth/configs/data_diode_all.yaml +6 -0
  16. Lotus-2/datasets/eval/depth/configs/data_eth3d.yaml +7 -0
  17. Lotus-2/datasets/eval/depth/configs/data_kitti_eigen_test.yaml +6 -0
  18. Lotus-2/datasets/eval/depth/configs/data_nyu_test.yaml +5 -0
  19. Lotus-2/datasets/eval/depth/configs/data_scannet_val.yaml +5 -0
  20. Lotus-2/datasets/eval/depth/data_split/diode/diode_val_all_filename_list.txt +0 -0
  21. Lotus-2/datasets/eval/depth/data_split/diode/diode_val_indoor_filename_list.txt +325 -0
  22. Lotus-2/datasets/eval/depth/data_split/diode/diode_val_outdoor_filename_list.txt +446 -0
  23. Lotus-2/datasets/eval/depth/data_split/eth3d/eth3d_filename_list.txt +454 -0
  24. Lotus-2/datasets/eval/depth/data_split/kitti/eigen_test_files_with_gt.txt +0 -0
  25. Lotus-2/datasets/eval/depth/data_split/kitti/eigen_val_from_train_800.txt +0 -0
  26. Lotus-2/datasets/eval/depth/data_split/nyu/labeled/filename_list_test.txt +654 -0
  27. Lotus-2/datasets/eval/depth/data_split/nyu/labeled/filename_list_train.txt +795 -0
  28. Lotus-2/datasets/eval/depth/data_split/scannet/scannet_val_sampled_list_800_1.txt +800 -0
  29. Lotus-2/datasets/eval/normal/.gitempty +0 -0
  30. Lotus-2/eval.py +109 -0
  31. Lotus-2/eval.sh +5 -0
  32. Lotus-2/evaluation/dataset_depth/__init__.py +37 -0
  33. Lotus-2/evaluation/dataset_depth/base_depth_dataset.py +256 -0
  34. Lotus-2/evaluation/dataset_depth/diode_dataset.py +72 -0
  35. Lotus-2/evaluation/dataset_depth/eth3d_dataset.py +46 -0
  36. Lotus-2/evaluation/dataset_depth/kitti_dataset.py +105 -0
  37. Lotus-2/evaluation/dataset_depth/nyu_dataset.py +43 -0
  38. Lotus-2/evaluation/dataset_depth/scannet_dataset.py +25 -0
  39. Lotus-2/evaluation/dataset_normal/__init__.py +27 -0
  40. Lotus-2/evaluation/dataset_normal/aug_basic.py +239 -0
  41. Lotus-2/evaluation/dataset_normal/ibims/__init__.py +47 -0
  42. Lotus-2/evaluation/dataset_normal/ibims/split/ibims.txt +100 -0
  43. Lotus-2/evaluation/dataset_normal/normal_dataloader.py +79 -0
  44. Lotus-2/evaluation/dataset_normal/nyuv2/__init__.py +48 -0
  45. Lotus-2/evaluation/dataset_normal/nyuv2/split/test.txt +654 -0
  46. Lotus-2/evaluation/dataset_normal/nyuv2/split/train.txt +795 -0
  47. Lotus-2/evaluation/dataset_normal/oasis/__init__.py +76 -0
  48. Lotus-2/evaluation/dataset_normal/oasis/split/val.txt +0 -0
  49. Lotus-2/evaluation/dataset_normal/scannet/__init__.py +48 -0
  50. Lotus-2/evaluation/dataset_normal/sintel/__init__.py +49 -0
Edit2Perceive/utils/visualize.py ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+ import torch
4
+ def prepare_image(tensor):
5
+ """把tensor处理成matplotlib能显示的格式 (H,W,C) or (H,W)"""
6
+ if torch.is_tensor(tensor):
7
+ tensor = tensor.detach().cpu()
8
+ # 如果是 (C,H,W),转为 (H,W,C)
9
+ # 如果是 (B,C,H,W),取第一个样本,转为 (H,W,C)
10
+ if tensor.ndim == 4:
11
+ tensor = tensor[0]
12
+ if tensor.ndim == 3 and tensor.shape[0]>3:
13
+ # (C,H,W) but C>3, 取前3通道
14
+ tensor = tensor[:3]
15
+ if tensor.ndim == 3:
16
+ # 归一化 -1~1 -> 0~1
17
+ if tensor.min() < -0.1 and tensor.max() > 1.1:
18
+ tensor = (tensor + 1) / 2
19
+ tensor = tensor.clamp(0, 1)
20
+ tensor = tensor.permute(1, 2, 0) # (H,W,C)
21
+ elif tensor.ndim == 2:
22
+ # mask, 0~1之间
23
+ if tensor.min() < 0.05 and tensor.min()>-0.05:
24
+ tensor = tensor.clamp(0, 1)
25
+ tensor = tensor
26
+ return (tensor.numpy()*255).astype(np.uint8)
27
+ def visualize_sample(sample, figsize=(12, 4)):
28
+ """
29
+ 智能可视化函数
30
+ sample: dict, 包含 'kontext_images', 'image', 'mask'
31
+ """
32
+
33
+ kontext = prepare_image(sample["kontext_images"].to(torch.float32))
34
+ image = prepare_image(sample["image"].to(torch.float32))
35
+ mask = prepare_image(sample["mask"].to(torch.float32)) if "mask" in sample else None
36
+ print(f"kontext: {type(kontext)}, shape: {kontext.shape}, dtype: {kontext.dtype}")
37
+ print(f"image: {type(image)}, shape: {image.shape}, dtype: {image.dtype}")
38
+
39
+ fig, axs = plt.subplots(1, 3, figsize=figsize)
40
+ axs[0].imshow(kontext)
41
+ axs[0].set_title("kontext_images")
42
+ axs[0].axis("off")
43
+
44
+ axs[1].imshow(image)
45
+ axs[1].set_title("image")
46
+ axs[1].axis("off")
47
+
48
+ axs[2].imshow((mask).astype(np.uint8), cmap="gray")
49
+ axs[2].set_title("mask")
50
+ axs[2].axis("off")
51
+
52
+ plt.tight_layout()
53
+ plt.savefig("tmp.png")
54
+
Edit2Perceive/vram_management/__init__.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ from vram_management.layers import *
2
+ from vram_management.gradient_checkpointing import *
Edit2Perceive/vram_management/gradient_checkpointing.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+
3
+
4
+ def create_custom_forward(module):
5
+ def custom_forward(*inputs, **kwargs):
6
+ return module(*inputs, **kwargs)
7
+ return custom_forward
8
+
9
+
10
+ def gradient_checkpoint_forward(
11
+ model,
12
+ use_gradient_checkpointing,
13
+ use_gradient_checkpointing_offload,
14
+ *args,
15
+ **kwargs,
16
+ ):
17
+ if use_gradient_checkpointing_offload:
18
+ with torch.autograd.graph.save_on_cpu():
19
+ model_output = torch.utils.checkpoint.checkpoint(
20
+ create_custom_forward(model),
21
+ *args,
22
+ **kwargs,
23
+ use_reentrant=False,
24
+ )
25
+ elif use_gradient_checkpointing:
26
+ model_output = torch.utils.checkpoint.checkpoint(
27
+ create_custom_forward(model),
28
+ *args,
29
+ **kwargs,
30
+ use_reentrant=False,
31
+ )
32
+ else:
33
+ model_output = model(*args, **kwargs)
34
+ return model_output
Edit2Perceive/vram_management/layers.py ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch, copy
2
+ from models.utils import init_weights_on_device
3
+
4
+
5
+ def cast_to(weight, dtype, device):
6
+ r = torch.empty_like(weight, dtype=dtype, device=device)
7
+ r.copy_(weight)
8
+ return r
9
+
10
+
11
+ class AutoTorchModule(torch.nn.Module):
12
+ def __init__(self):
13
+ super().__init__()
14
+
15
+ def check_free_vram(self):
16
+ gpu_mem_state = torch.cuda.mem_get_info(self.computation_device)
17
+ used_memory = (gpu_mem_state[1] - gpu_mem_state[0]) / (1024 ** 3)
18
+ return used_memory < self.vram_limit
19
+
20
+ def offload(self):
21
+ if self.state != 0:
22
+ self.to(dtype=self.offload_dtype, device=self.offload_device)
23
+ self.state = 0
24
+
25
+ def onload(self):
26
+ if self.state != 1:
27
+ self.to(dtype=self.onload_dtype, device=self.onload_device)
28
+ self.state = 1
29
+
30
+ def keep(self):
31
+ if self.state != 2:
32
+ self.to(dtype=self.computation_dtype, device=self.computation_device)
33
+ self.state = 2
34
+
35
+
36
+ class AutoWrappedModule(AutoTorchModule):
37
+ def __init__(self, module: torch.nn.Module, offload_dtype, offload_device, onload_dtype, onload_device, computation_dtype, computation_device, vram_limit, **kwargs):
38
+ super().__init__()
39
+ self.module = module.to(dtype=offload_dtype, device=offload_device)
40
+ self.offload_dtype = offload_dtype
41
+ self.offload_device = offload_device
42
+ self.onload_dtype = onload_dtype
43
+ self.onload_device = onload_device
44
+ self.computation_dtype = computation_dtype
45
+ self.computation_device = computation_device
46
+ self.vram_limit = vram_limit
47
+ self.state = 0
48
+
49
+ def forward(self, *args, **kwargs):
50
+ if self.state == 2:
51
+ module = self.module
52
+ else:
53
+ if self.onload_dtype == self.computation_dtype and self.onload_device == self.computation_device:
54
+ module = self.module
55
+ elif self.vram_limit is not None and self.check_free_vram():
56
+ self.keep()
57
+ module = self.module
58
+ else:
59
+ module = copy.deepcopy(self.module).to(dtype=self.computation_dtype, device=self.computation_device)
60
+ return module(*args, **kwargs)
61
+
62
+
63
+ class WanAutoCastLayerNorm(torch.nn.LayerNorm, AutoTorchModule):
64
+ def __init__(self, module: torch.nn.LayerNorm, offload_dtype, offload_device, onload_dtype, onload_device, computation_dtype, computation_device, vram_limit, **kwargs):
65
+ with init_weights_on_device(device=torch.device("meta")):
66
+ super().__init__(module.normalized_shape, eps=module.eps, elementwise_affine=module.elementwise_affine, bias=module.bias is not None, dtype=offload_dtype, device=offload_device)
67
+ self.weight = module.weight
68
+ self.bias = module.bias
69
+ self.offload_dtype = offload_dtype
70
+ self.offload_device = offload_device
71
+ self.onload_dtype = onload_dtype
72
+ self.onload_device = onload_device
73
+ self.computation_dtype = computation_dtype
74
+ self.computation_device = computation_device
75
+ self.vram_limit = vram_limit
76
+ self.state = 0
77
+
78
+ def forward(self, x, *args, **kwargs):
79
+ if self.state == 2:
80
+ weight, bias = self.weight, self.bias
81
+ else:
82
+ if self.onload_dtype == self.computation_dtype and self.onload_device == self.computation_device:
83
+ weight, bias = self.weight, self.bias
84
+ elif self.vram_limit is not None and self.check_free_vram():
85
+ self.keep()
86
+ weight, bias = self.weight, self.bias
87
+ else:
88
+ weight = None if self.weight is None else cast_to(self.weight, self.computation_dtype, self.computation_device)
89
+ bias = None if self.bias is None else cast_to(self.bias, self.computation_dtype, self.computation_device)
90
+ with torch.amp.autocast(device_type=x.device.type):
91
+ x = torch.nn.functional.layer_norm(x.float(), self.normalized_shape, weight, bias, self.eps).type_as(x)
92
+ return x
93
+
94
+
95
+ class AutoWrappedLinear(torch.nn.Linear, AutoTorchModule):
96
+ def __init__(self, module: torch.nn.Linear, offload_dtype, offload_device, onload_dtype, onload_device, computation_dtype, computation_device, vram_limit, name="", **kwargs):
97
+ with init_weights_on_device(device=torch.device("meta")):
98
+ super().__init__(in_features=module.in_features, out_features=module.out_features, bias=module.bias is not None, dtype=offload_dtype, device=offload_device)
99
+ self.weight = module.weight
100
+ self.bias = module.bias
101
+ self.offload_dtype = offload_dtype
102
+ self.offload_device = offload_device
103
+ self.onload_dtype = onload_dtype
104
+ self.onload_device = onload_device
105
+ self.computation_dtype = computation_dtype
106
+ self.computation_device = computation_device
107
+ self.vram_limit = vram_limit
108
+ self.state = 0
109
+ self.name = name
110
+ self.lora_A_weights = []
111
+ self.lora_B_weights = []
112
+ self.lora_merger = None
113
+ self.enable_fp8 = computation_dtype in [torch.float8_e4m3fn, torch.float8_e4m3fnuz]
114
+
115
+ def fp8_linear(
116
+ self,
117
+ input: torch.Tensor,
118
+ weight: torch.Tensor,
119
+ bias: torch.Tensor | None = None,
120
+ ) -> torch.Tensor:
121
+ device = input.device
122
+ origin_dtype = input.dtype
123
+ origin_shape = input.shape
124
+ input = input.reshape(-1, origin_shape[-1])
125
+
126
+ x_max = torch.max(torch.abs(input), dim=-1, keepdim=True).values
127
+ fp8_max = 448.0
128
+ # For float8_e4m3fnuz, the maximum representable value is half of that of e4m3fn.
129
+ # To avoid overflow and ensure numerical compatibility during FP8 computation,
130
+ # we scale down the input by 2.0 in advance.
131
+ # This scaling will be compensated later during the final result scaling.
132
+ if self.computation_dtype == torch.float8_e4m3fnuz:
133
+ fp8_max = fp8_max / 2.0
134
+ scale_a = torch.clamp(x_max / fp8_max, min=1.0).float().to(device=device)
135
+ scale_b = torch.ones((weight.shape[0], 1)).to(device=device)
136
+ input = input / (scale_a + 1e-8)
137
+ input = input.to(self.computation_dtype)
138
+ weight = weight.to(self.computation_dtype)
139
+ bias = bias.to(torch.bfloat16)
140
+
141
+ result = torch._scaled_mm(
142
+ input,
143
+ weight.T,
144
+ scale_a=scale_a,
145
+ scale_b=scale_b.T,
146
+ bias=bias,
147
+ out_dtype=origin_dtype,
148
+ )
149
+ new_shape = origin_shape[:-1] + result.shape[-1:]
150
+ result = result.reshape(new_shape)
151
+ return result
152
+
153
+ def forward(self, x, *args, **kwargs):
154
+ # VRAM management
155
+ if self.state == 2:
156
+ weight, bias = self.weight, self.bias
157
+ else:
158
+ if self.onload_dtype == self.computation_dtype and self.onload_device == self.computation_device:
159
+ weight, bias = self.weight, self.bias
160
+ elif self.vram_limit is not None and self.check_free_vram():
161
+ self.keep()
162
+ weight, bias = self.weight, self.bias
163
+ else:
164
+ weight = cast_to(self.weight, self.computation_dtype, self.computation_device)
165
+ bias = None if self.bias is None else cast_to(self.bias, self.computation_dtype, self.computation_device)
166
+
167
+ # Linear forward
168
+ if self.enable_fp8:
169
+ out = self.fp8_linear(x, weight, bias)
170
+ else:
171
+ out = torch.nn.functional.linear(x, weight, bias)
172
+
173
+ # LoRA
174
+ if len(self.lora_A_weights) == 0:
175
+ # No LoRA
176
+ return out
177
+ elif self.lora_merger is None:
178
+ # Native LoRA inference
179
+ for lora_A, lora_B in zip(self.lora_A_weights, self.lora_B_weights):
180
+ out = out + x @ lora_A.T @ lora_B.T
181
+ else:
182
+ # LoRA fusion
183
+ lora_output = []
184
+ for lora_A, lora_B in zip(self.lora_A_weights, self.lora_B_weights):
185
+ lora_output.append(x @ lora_A.T @ lora_B.T)
186
+ lora_output = torch.stack(lora_output)
187
+ out = self.lora_merger(out, lora_output)
188
+ return out
189
+
190
+
191
+ def enable_vram_management_recursively(model: torch.nn.Module, module_map: dict, module_config: dict, max_num_param=None, overflow_module_config: dict = None, total_num_param=0, vram_limit=None, name_prefix=""):
192
+ for name, module in model.named_children():
193
+ layer_name = name if name_prefix == "" else name_prefix + "." + name
194
+ for source_module, target_module in module_map.items():
195
+ if isinstance(module, source_module):
196
+ num_param = sum(p.numel() for p in module.parameters())
197
+ if max_num_param is not None and total_num_param + num_param > max_num_param:
198
+ module_config_ = overflow_module_config
199
+ else:
200
+ module_config_ = module_config
201
+ module_ = target_module(module, **module_config_, vram_limit=vram_limit, name=layer_name)
202
+ setattr(model, name, module_)
203
+ total_num_param += num_param
204
+ break
205
+ else:
206
+ total_num_param = enable_vram_management_recursively(module, module_map, module_config, max_num_param, overflow_module_config, total_num_param, vram_limit=vram_limit, name_prefix=layer_name)
207
+ return total_num_param
208
+
209
+
210
+ def enable_vram_management(model: torch.nn.Module, module_map: dict, module_config: dict, max_num_param=None, overflow_module_config: dict = None, vram_limit=None):
211
+ enable_vram_management_recursively(model, module_map, module_config, max_num_param, overflow_module_config, total_num_param=0, vram_limit=vram_limit)
212
+ model.vram_management_enabled = True
213
+
Lotus-2/.gitignore ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ __pycache__/
2
+ outputs/
3
+ .DS_Store
4
+ *.tar
5
+ dsine_eval/
6
+ vibe_edit_history/
7
+ .gradio/
Lotus-2/LICENSE ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [2025] [Jing He, Haodong Li, Mingzhi Sheng, Ying-Cong Chen]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
Lotus-2/README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # <img src="assets/badges/lotus_icon.png" alt="lotus" style="height:1em; vertical-align:bottom;"/> Lotus-2: Advancing Geometric Dense Prediction with Powerful Image Generative Model
2
+
3
+ [![Page](https://img.shields.io/badge/Project-Website-pink?logo=googlechrome&logoColor=white)](https://lotus-2.github.io/)
4
+ [![Paper](https://img.shields.io/badge/arXiv-Paper-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2512.01030)
5
+ [![HuggingFace Demo](https://img.shields.io/badge/🤗%20HuggingFace-Demo%20(Depth)-yellow)](https://huggingface.co/spaces/haodongli/Lotus-2_Depth)
6
+ [![HuggingFace Demo](https://img.shields.io/badge/🤗%20HuggingFace-Demo%20(Normal)-yellow)](https://huggingface.co/spaces/haodongli/Lotus-2_Normal)
7
+ [![HuggingFace](https://img.shields.io/badge/🤗%20HuggingFace-Weights-blue)](https://huggingface.co/jingheya/Lotus-2/tree/main)
8
+
9
+ [Jing He](https://scholar.google.com/citations?hl=en&user=RsLS11MAAAAJ)<sup>1</sup>,
10
+ [Haodong Li](https://haodong-li.com/)<sup>12<span>&#10033;</span></sup>,
11
+ [Mingzhi Sheng]()<sup>1<span>&#10033;</span></sup>,
12
+ [Ying-Cong Chen](https://www.yingcong.me/)<sup>13&#9993;</sup>
13
+
14
+ <span class="author-block"><sup>1</sup>HKUST(GZ)</span>
15
+ <span class="author-block"><sup>2</sup>UC San Diego</span>
16
+ <span class="author-block"><sup>3</sup>HKUST</span><br>
17
+ <span class="author-block">
18
+ <sup>&#10033;</sup>Both authors contributed equally.
19
+ <sup>&#9993;</sup>Corresponding author.
20
+ </span>
21
+
22
+ ![teaser](assets/badges/teaser-1.png)
23
+
24
+ **We present Lotus-2, a two-stage deterministic framework for monocular geometric dense prediction.** Our method leverages pre-trained generative model as a deterministic world prior to achieve **new state-of-the-art accuracy** while requiring **remarkably minimal data** (trained on only **0.66%** of the samples used by MoGe-2). This figure demonstrates Lotus-2's robust zero-shot generalization with sharp geometric details, especially in challenging cases like oil paintings and transparent objects.
25
+
26
+ 🚀🚀🚀 **Please also check the** [**Project Page**](https://lotus3d.github.io/) **and** [**Github Repo**](https://github.com/EnVision-Research/Lotus) **of our prior work: Lotus!** 🚀🚀🚀
27
+
28
+ ## 📢 News
29
+ - 2025-12-01: [Paper](https://arxiv.org/abs/2512.01030) released! <br>
30
+ - 2025-11-28: The inference code and HuggingFace demo ([Depth](https://huggingface.co/spaces/haodongli/Lotus-2_Depth) & [Normal](https://huggingface.co/spaces/haodongli/Lotus-2_Normal)) are available! <br>
31
+
32
+ ## 🛠️ Setup
33
+ This installation was tested on: Ubuntu 20.04 LTS, Python 3.10, CUDA 12.3, NVIDIA A800-SXM4-80GB.
34
+ 1. Be sure you have a GPU with at least **40GB** memory.
35
+ 2. Clone the repository (requires git):
36
+ ```
37
+ git clone https://github.com/EnVision-Research/Lotus-2.git
38
+ cd Lotus-2
39
+ ```
40
+ 3. Install dependencies (requires conda):
41
+ ```
42
+ conda create -n lotus2 python=3.10 -y
43
+ conda activate lotus2
44
+ pip install -r requirements.txt
45
+ ```
46
+ 4. Be sure you have access to [`black-forest-labs/FLUX.1-dev`](https://huggingface.co/black-forest-labs/FLUX.1-dev).
47
+ 5. Login your huggingface account via (if you want to switch account, run `hf auth logout` at first):
48
+ ```
49
+ hf auth login
50
+ ```
51
+
52
+ ## 🤗 Gradio Demo
53
+
54
+ 1. Online demo: [Depth](https://huggingface.co/spaces/haodongli/Lotus-2_Depth) & [Normal](https://huggingface.co/spaces/haodongli/Lotus-2_Normal)
55
+ 2. Local demo:
56
+ - For **depth** estimation, run:
57
+ ```
58
+ python app.py depth
59
+ ```
60
+ - For **normal** estimation, run:
61
+ ```
62
+ python app.py normal
63
+ ```
64
+
65
+ ## 🕹️ Inference
66
+ 1. Place your images in a directory, for example, under `./assets/in-the-wild_example` (where we have already prepared several examples).
67
+ 2. Run the inference command:
68
+ ```
69
+ sh infer.sh
70
+ ```
71
+ - <b> Note</b>: The inference code will automatically download the required model weights. You also can download them manually using the HuggingFace CLI:
72
+ ```
73
+ hf download jingheya/Lotus-2 --local-dir <path/to/your/local/directory>
74
+ ```
75
+ Use the following arguments to specify the paths: `--core_predictor_model_path`, `--lcm_model_path`, and `--detail_sharpener_model_path`.
76
+
77
+ ## 🚀 Evaluation
78
+ 1. Prepare benchmark datasets:
79
+ - For **depth** estimation, please download the [Marigold evaluation datasets](https://share.phys.ethz.ch/~pf/bingkedata/marigold/evaluation_dataset/) via:
80
+ ```
81
+ cd datasets/eval/depth/
82
+
83
+ wget -r -np -nH --cut-dirs=4 -R "index.html*" -P . https://share.phys.ethz.ch/~pf/bingkedata/marigold/evaluation_dataset/
84
+ ```
85
+ - For **normal** estimation, please (manually) download the [DSINE evaluation datasets](https://drive.google.com/drive/folders/1t3LMJIIrSnCGwOEf53Cyg0lkSXd3M4Hm?usp=drive_link) (`dsine_eval.zip`) under: `datasets/eval/normal/` and unzip it.
86
+ 2. Run the evaluation command (modify the `TASK_NAME` in `eval.sh` to switch tasks):
87
+ ```
88
+ sh eval.sh
89
+ ```
90
+
91
+ ## 🎓 Citation
92
+ If you find our work useful in your research, please consider citing our paper:
93
+ ```bibtex
94
+ @article{he2025lotus,
95
+ title={Lotus-2: Advancing Geometric Dense Prediction with Powerful Image Generative Model},
96
+ author={He, Jing and Li, Haodong and Sheng, Mingzhi and Chen, Ying-Cong},
97
+ journal={arXiv preprint arXiv:2512.01030},
98
+ year={2025}
99
+ }
100
+ ```
Lotus-2/app.py ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import spaces # must be first!
2
+ import sys
3
+ import os
4
+ import torch
5
+ from PIL import Image
6
+ import gradio as gr
7
+ from glob import glob
8
+ from contextlib import nullcontext
9
+ from pipeline import Lotus2Pipeline
10
+ from diffusers import (
11
+ FlowMatchEulerDiscreteScheduler,
12
+ FluxTransformer2DModel,
13
+ )
14
+ from infer import (
15
+ load_lora_and_lcm_weights,
16
+ process_single_image
17
+ )
18
+
19
+ os.environ['GRADIO_TEMP_DI']="."
20
+ pipeline = None
21
+ device = "cuda" if torch.cuda.is_available() else "cpu"
22
+ weight_dtype = torch.bfloat16
23
+ task = None
24
+
25
+ @spaces.GPU
26
+ def load_pipeline():
27
+ global pipeline, device, weight_dtype, task
28
+ noise_scheduler = FlowMatchEulerDiscreteScheduler.from_pretrained(
29
+ 'black-forest-labs/FLUX.1-dev', subfolder="scheduler", num_train_timesteps=10
30
+ )
31
+ transformer = FluxTransformer2DModel.from_pretrained(
32
+ 'black-forest-labs/FLUX.1-dev', subfolder="transformer", revision=None, variant=None
33
+ )
34
+ transformer.requires_grad_(False)
35
+ transformer.to(device=device, dtype=weight_dtype)
36
+ transformer, local_continuity_module = load_lora_and_lcm_weights(transformer, None, None, None, task)
37
+ pipeline = Lotus2Pipeline.from_pretrained(
38
+ 'black-forest-labs/FLUX.1-dev',
39
+ scheduler=noise_scheduler,
40
+ transformer=transformer,
41
+ revision=None,
42
+ variant=None,
43
+ torch_dtype=weight_dtype,
44
+ )
45
+ pipeline.local_continuity_module = local_continuity_module
46
+ pipeline = pipeline.to(device)
47
+
48
+ @spaces.GPU
49
+ def fn(image_path):
50
+ global pipeline, device, task
51
+ pipeline.set_progress_bar_config(disable=True)
52
+ with nullcontext():
53
+ _, output_vis, _ = process_single_image(
54
+ image_path, pipeline,
55
+ task_name=task,
56
+ device=device,
57
+ num_inference_steps=10,
58
+ process_res=1024
59
+ )
60
+ return [Image.open(image_path), output_vis]
61
+
62
+ def build_demo():
63
+ global task
64
+ inputs = [
65
+ gr.Image(label="Image", type="filepath")
66
+ ]
67
+ outputs = [
68
+ gr.ImageSlider(
69
+ label=f"{task.title()}",
70
+ type="pil",
71
+ slider_position=20,
72
+ )
73
+ ]
74
+ examples = glob(f"assets/demo_examples/{task}/*.png") + glob(f"assets/demo_examples/{task}/*.jpg")
75
+ demo = gr.Interface(
76
+ fn=fn,
77
+ title="Lotus-2: Advancing Geometric Dense Prediction with Powerful Image Generative Model",
78
+ description=f"""
79
+ <strong>Please consider starring <span style="color: orange">&#9733;</span> our <a href="https://github.com/EnVision-Research/Lotus-2" target="_blank" rel="noopener noreferrer">GitHub Repo</a> if you find this demo useful! 😊</strong>
80
+ <br>
81
+ <strong>Current Task: </strong><strong style="color: red;">{task.title()}</strong>
82
+ """,
83
+ inputs=inputs,
84
+ outputs=outputs,
85
+ examples=examples,
86
+ examples_per_page=10
87
+ )
88
+ return demo
89
+
90
+ def main(task_name):
91
+ global task
92
+ task = task_name
93
+ load_pipeline()
94
+ demo = build_demo()
95
+ demo.launch(
96
+ server_name="0.0.0.0",
97
+ server_port=6381,
98
+ )
99
+
100
+ if __name__ == "__main__":
101
+ task_name = sys.argv[-1]
102
+ if not task_name in ['depth', 'normal']:
103
+ raise ValueError("Invalid task. Please choose from 'depth' and 'normal'.")
104
+ main(task_name)
Lotus-2/assets/badges/lotus_icon.png ADDED
Lotus-2/assets/demo_examples/depth/19.jpg ADDED
Lotus-2/assets/demo_examples/normal/flux1-dev_an-artistic-glass-vase-with-an-embossed (2).jpg ADDED
Lotus-2/assets/demo_examples/normal/photo-1549127024-5f213d45604a.png ADDED
Lotus-2/assets/in-the-wild_examples/flux1-dev_an-artistic-glass-vase-with-an-embossed (2).jpg ADDED
Lotus-2/assets/in-the-wild_examples/photo-1549127024-5f213d45604a.png ADDED
Lotus-2/datasets/eval/depth/configs/data_diode_all.yaml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ name: diode
2
+ disp_name: diode_val_all
3
+ # dir: diode
4
+ dir: diode/diode_val.tar
5
+ filenames: datasets/eval/depth/data_split/diode/diode_val_all_filename_list.txt
6
+ processing_res: 640
Lotus-2/datasets/eval/depth/configs/data_eth3d.yaml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ name: eth3d
2
+ disp_name: eth3d_full
3
+ # dir: eth3d
4
+ dir: eth3d/eth3d.tar
5
+ filenames: datasets/eval/depth/data_split/eth3d/eth3d_filename_list.txt
6
+ processing_res: 768
7
+ alignment_max_res: 1024
Lotus-2/datasets/eval/depth/configs/data_kitti_eigen_test.yaml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ name: kitti
2
+ disp_name: kitti_eigen_test_full
3
+ dir: kitti/kitti_eigen_split_test.tar
4
+ filenames: datasets/eval/depth/data_split/kitti/eigen_test_files_with_gt.txt
5
+ kitti_bm_crop: true
6
+ valid_mask_crop: eigen
Lotus-2/datasets/eval/depth/configs/data_nyu_test.yaml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ name: nyu_v2
2
+ disp_name: nyu_test_full
3
+ dir: nyuv2/nyu_labeled_extracted.tar
4
+ filenames: datasets/eval/depth/data_split/nyu/labeled/filename_list_test.txt
5
+ eigen_valid_mask: true
Lotus-2/datasets/eval/depth/configs/data_scannet_val.yaml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ name: scannet
2
+ disp_name: scannet_val_800_1
3
+ # dir: scannet
4
+ dir: scannet/scannet_val_sampled_800_1.tar
5
+ filenames: datasets/eval/depth/data_split/scannet/scannet_val_sampled_list_800_1.txt
Lotus-2/datasets/eval/depth/data_split/diode/diode_val_all_filename_list.txt ADDED
The diff for this file is too large to render. See raw diff
 
Lotus-2/datasets/eval/depth/data_split/diode/diode_val_indoor_filename_list.txt ADDED
@@ -0,0 +1,325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ indoors/scene_00021/scan_00189/00021_00189_indoors_200_010.png indoors/scene_00021/scan_00189/00021_00189_indoors_200_010_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_200_010_depth_mask.npy
2
+ indoors/scene_00021/scan_00189/00021_00189_indoors_240_030.png indoors/scene_00021/scan_00189/00021_00189_indoors_240_030_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_240_030_depth_mask.npy
3
+ indoors/scene_00021/scan_00189/00021_00189_indoors_210_000.png indoors/scene_00021/scan_00189/00021_00189_indoors_210_000_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_210_000_depth_mask.npy
4
+ indoors/scene_00021/scan_00189/00021_00189_indoors_350_030.png indoors/scene_00021/scan_00189/00021_00189_indoors_350_030_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_350_030_depth_mask.npy
5
+ indoors/scene_00021/scan_00189/00021_00189_indoors_010_010.png indoors/scene_00021/scan_00189/00021_00189_indoors_010_010_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_010_010_depth_mask.npy
6
+ indoors/scene_00021/scan_00189/00021_00189_indoors_230_020.png indoors/scene_00021/scan_00189/00021_00189_indoors_230_020_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_230_020_depth_mask.npy
7
+ indoors/scene_00021/scan_00189/00021_00189_indoors_150_030.png indoors/scene_00021/scan_00189/00021_00189_indoors_150_030_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_150_030_depth_mask.npy
8
+ indoors/scene_00021/scan_00189/00021_00189_indoors_000_040.png indoors/scene_00021/scan_00189/00021_00189_indoors_000_040_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_000_040_depth_mask.npy
9
+ indoors/scene_00021/scan_00189/00021_00189_indoors_220_030.png indoors/scene_00021/scan_00189/00021_00189_indoors_220_030_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_220_030_depth_mask.npy
10
+ indoors/scene_00021/scan_00189/00021_00189_indoors_340_020.png indoors/scene_00021/scan_00189/00021_00189_indoors_340_020_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_340_020_depth_mask.npy
11
+ indoors/scene_00021/scan_00189/00021_00189_indoors_000_000.png indoors/scene_00021/scan_00189/00021_00189_indoors_000_000_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_000_000_depth_mask.npy
12
+ indoors/scene_00021/scan_00189/00021_00189_indoors_350_010.png indoors/scene_00021/scan_00189/00021_00189_indoors_350_010_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_350_010_depth_mask.npy
13
+ indoors/scene_00021/scan_00189/00021_00189_indoors_010_030.png indoors/scene_00021/scan_00189/00021_00189_indoors_010_030_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_010_030_depth_mask.npy
14
+ indoors/scene_00021/scan_00189/00021_00189_indoors_130_000.png indoors/scene_00021/scan_00189/00021_00189_indoors_130_000_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_130_000_depth_mask.npy
15
+ indoors/scene_00021/scan_00189/00021_00189_indoors_230_000.png indoors/scene_00021/scan_00189/00021_00189_indoors_230_000_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_230_000_depth_mask.npy
16
+ indoors/scene_00021/scan_00189/00021_00189_indoors_220_010.png indoors/scene_00021/scan_00189/00021_00189_indoors_220_010_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_220_010_depth_mask.npy
17
+ indoors/scene_00021/scan_00189/00021_00189_indoors_340_000.png indoors/scene_00021/scan_00189/00021_00189_indoors_340_000_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_340_000_depth_mask.npy
18
+ indoors/scene_00021/scan_00189/00021_00189_indoors_000_020.png indoors/scene_00021/scan_00189/00021_00189_indoors_000_020_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_000_020_depth_mask.npy
19
+ indoors/scene_00021/scan_00189/00021_00189_indoors_160_020.png indoors/scene_00021/scan_00189/00021_00189_indoors_160_020_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_160_020_depth_mask.npy
20
+ indoors/scene_00021/scan_00189/00021_00189_indoors_190_020.png indoors/scene_00021/scan_00189/00021_00189_indoors_190_020_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_190_020_depth_mask.npy
21
+ indoors/scene_00021/scan_00189/00021_00189_indoors_210_020.png indoors/scene_00021/scan_00189/00021_00189_indoors_210_020_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_210_020_depth_mask.npy
22
+ indoors/scene_00021/scan_00189/00021_00189_indoors_330_010.png indoors/scene_00021/scan_00189/00021_00189_indoors_330_010_depth.npy indoors/scene_00021/scan_00189/00021_00189_indoors_330_010_depth_mask.npy
23
+ indoors/scene_00021/scan_00190/00021_00190_indoors_280_000.png indoors/scene_00021/scan_00190/00021_00190_indoors_280_000_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_280_000_depth_mask.npy
24
+ indoors/scene_00021/scan_00190/00021_00190_indoors_150_030.png indoors/scene_00021/scan_00190/00021_00190_indoors_150_030_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_150_030_depth_mask.npy
25
+ indoors/scene_00021/scan_00190/00021_00190_indoors_110_050.png indoors/scene_00021/scan_00190/00021_00190_indoors_110_050_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_110_050_depth_mask.npy
26
+ indoors/scene_00021/scan_00190/00021_00190_indoors_050_030.png indoors/scene_00021/scan_00190/00021_00190_indoors_050_030_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_050_030_depth_mask.npy
27
+ indoors/scene_00021/scan_00190/00021_00190_indoors_070_000.png indoors/scene_00021/scan_00190/00021_00190_indoors_070_000_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_070_000_depth_mask.npy
28
+ indoors/scene_00021/scan_00190/00021_00190_indoors_140_020.png indoors/scene_00021/scan_00190/00021_00190_indoors_140_020_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_140_020_depth_mask.npy
29
+ indoors/scene_00021/scan_00190/00021_00190_indoors_060_010.png indoors/scene_00021/scan_00190/00021_00190_indoors_060_010_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_060_010_depth_mask.npy
30
+ indoors/scene_00021/scan_00190/00021_00190_indoors_300_000.png indoors/scene_00021/scan_00190/00021_00190_indoors_300_000_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_300_000_depth_mask.npy
31
+ indoors/scene_00021/scan_00190/00021_00190_indoors_290_010.png indoors/scene_00021/scan_00190/00021_00190_indoors_290_010_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_290_010_depth_mask.npy
32
+ indoors/scene_00021/scan_00190/00021_00190_indoors_190_000.png indoors/scene_00021/scan_00190/00021_00190_indoors_190_000_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_190_000_depth_mask.npy
33
+ indoors/scene_00021/scan_00190/00021_00190_indoors_090_000.png indoors/scene_00021/scan_00190/00021_00190_indoors_090_000_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_090_000_depth_mask.npy
34
+ indoors/scene_00021/scan_00190/00021_00190_indoors_060_040.png indoors/scene_00021/scan_00190/00021_00190_indoors_060_040_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_060_040_depth_mask.npy
35
+ indoors/scene_00021/scan_00190/00021_00190_indoors_120_020.png indoors/scene_00021/scan_00190/00021_00190_indoors_120_020_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_120_020_depth_mask.npy
36
+ indoors/scene_00021/scan_00190/00021_00190_indoors_100_010.png indoors/scene_00021/scan_00190/00021_00190_indoors_100_010_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_100_010_depth_mask.npy
37
+ indoors/scene_00021/scan_00190/00021_00190_indoors_130_030.png indoors/scene_00021/scan_00190/00021_00190_indoors_130_030_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_130_030_depth_mask.npy
38
+ indoors/scene_00021/scan_00190/00021_00190_indoors_270_010.png indoors/scene_00021/scan_00190/00021_00190_indoors_270_010_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_270_010_depth_mask.npy
39
+ indoors/scene_00021/scan_00190/00021_00190_indoors_110_000.png indoors/scene_00021/scan_00190/00021_00190_indoors_110_000_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_110_000_depth_mask.npy
40
+ indoors/scene_00021/scan_00190/00021_00190_indoors_080_010.png indoors/scene_00021/scan_00190/00021_00190_indoors_080_010_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_080_010_depth_mask.npy
41
+ indoors/scene_00021/scan_00190/00021_00190_indoors_050_000.png indoors/scene_00021/scan_00190/00021_00190_indoors_050_000_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_050_000_depth_mask.npy
42
+ indoors/scene_00021/scan_00190/00021_00190_indoors_070_030.png indoors/scene_00021/scan_00190/00021_00190_indoors_070_030_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_070_030_depth_mask.npy
43
+ indoors/scene_00021/scan_00190/00021_00190_indoors_150_050.png indoors/scene_00021/scan_00190/00021_00190_indoors_150_050_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_150_050_depth_mask.npy
44
+ indoors/scene_00021/scan_00190/00021_00190_indoors_280_020.png indoors/scene_00021/scan_00190/00021_00190_indoors_280_020_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_280_020_depth_mask.npy
45
+ indoors/scene_00021/scan_00190/00021_00190_indoors_300_020.png indoors/scene_00021/scan_00190/00021_00190_indoors_300_020_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_300_020_depth_mask.npy
46
+ indoors/scene_00021/scan_00190/00021_00190_indoors_090_030.png indoors/scene_00021/scan_00190/00021_00190_indoors_090_030_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_090_030_depth_mask.npy
47
+ indoors/scene_00021/scan_00190/00021_00190_indoors_140_040.png indoors/scene_00021/scan_00190/00021_00190_indoors_140_040_depth.npy indoors/scene_00021/scan_00190/00021_00190_indoors_140_040_depth_mask.npy
48
+ indoors/scene_00021/scan_00191/00021_00191_indoors_230_010.png indoors/scene_00021/scan_00191/00021_00191_indoors_230_010_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_230_010_depth_mask.npy
49
+ indoors/scene_00021/scan_00191/00021_00191_indoors_230_050.png indoors/scene_00021/scan_00191/00021_00191_indoors_230_050_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_230_050_depth_mask.npy
50
+ indoors/scene_00021/scan_00191/00021_00191_indoors_280_030.png indoors/scene_00021/scan_00191/00021_00191_indoors_280_030_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_280_030_depth_mask.npy
51
+ indoors/scene_00021/scan_00191/00021_00191_indoors_220_040.png indoors/scene_00021/scan_00191/00021_00191_indoors_220_040_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_220_040_depth_mask.npy
52
+ indoors/scene_00021/scan_00191/00021_00191_indoors_020_040.png indoors/scene_00021/scan_00191/00021_00191_indoors_020_040_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_020_040_depth_mask.npy
53
+ indoors/scene_00021/scan_00191/00021_00191_indoors_220_000.png indoors/scene_00021/scan_00191/00021_00191_indoors_220_000_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_220_000_depth_mask.npy
54
+ indoors/scene_00021/scan_00191/00021_00191_indoors_340_000.png indoors/scene_00021/scan_00191/00021_00191_indoors_340_000_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_340_000_depth_mask.npy
55
+ indoors/scene_00021/scan_00191/00021_00191_indoors_260_030.png indoors/scene_00021/scan_00191/00021_00191_indoors_260_030_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_260_030_depth_mask.npy
56
+ indoors/scene_00021/scan_00191/00021_00191_indoors_340_040.png indoors/scene_00021/scan_00191/00021_00191_indoors_340_040_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_340_040_depth_mask.npy
57
+ indoors/scene_00021/scan_00191/00021_00191_indoors_010_030.png indoors/scene_00021/scan_00191/00021_00191_indoors_010_030_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_010_030_depth_mask.npy
58
+ indoors/scene_00021/scan_00191/00021_00191_indoors_340_020.png indoors/scene_00021/scan_00191/00021_00191_indoors_340_020_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_340_020_depth_mask.npy
59
+ indoors/scene_00021/scan_00191/00021_00191_indoors_060_050.png indoors/scene_00021/scan_00191/00021_00191_indoors_060_050_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_060_050_depth_mask.npy
60
+ indoors/scene_00021/scan_00191/00021_00191_indoors_000_040.png indoors/scene_00021/scan_00191/00021_00191_indoors_000_040_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_000_040_depth_mask.npy
61
+ indoors/scene_00021/scan_00191/00021_00191_indoors_350_030.png indoors/scene_00021/scan_00191/00021_00191_indoors_350_030_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_350_030_depth_mask.npy
62
+ indoors/scene_00021/scan_00191/00021_00191_indoors_230_030.png indoors/scene_00021/scan_00191/00021_00191_indoors_230_030_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_230_030_depth_mask.npy
63
+ indoors/scene_00021/scan_00191/00021_00191_indoors_330_030.png indoors/scene_00021/scan_00191/00021_00191_indoors_330_030_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_330_030_depth_mask.npy
64
+ indoors/scene_00021/scan_00191/00021_00191_indoors_080_050.png indoors/scene_00021/scan_00191/00021_00191_indoors_080_050_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_080_050_depth_mask.npy
65
+ indoors/scene_00021/scan_00191/00021_00191_indoors_220_020.png indoors/scene_00021/scan_00191/00021_00191_indoors_220_020_depth.npy indoors/scene_00021/scan_00191/00021_00191_indoors_220_020_depth_mask.npy
66
+ indoors/scene_00021/scan_00188/00021_00188_indoors_110_000.png indoors/scene_00021/scan_00188/00021_00188_indoors_110_000_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_110_000_depth_mask.npy
67
+ indoors/scene_00021/scan_00188/00021_00188_indoors_180_010.png indoors/scene_00021/scan_00188/00021_00188_indoors_180_010_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_180_010_depth_mask.npy
68
+ indoors/scene_00021/scan_00188/00021_00188_indoors_110_040.png indoors/scene_00021/scan_00188/00021_00188_indoors_110_040_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_110_040_depth_mask.npy
69
+ indoors/scene_00021/scan_00188/00021_00188_indoors_090_000.png indoors/scene_00021/scan_00188/00021_00188_indoors_090_000_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_090_000_depth_mask.npy
70
+ indoors/scene_00021/scan_00188/00021_00188_indoors_100_010.png indoors/scene_00021/scan_00188/00021_00188_indoors_100_010_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_100_010_depth_mask.npy
71
+ indoors/scene_00021/scan_00188/00021_00188_indoors_200_040.png indoors/scene_00021/scan_00188/00021_00188_indoors_200_040_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_200_040_depth_mask.npy
72
+ indoors/scene_00021/scan_00188/00021_00188_indoors_120_030.png indoors/scene_00021/scan_00188/00021_00188_indoors_120_030_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_120_030_depth_mask.npy
73
+ indoors/scene_00021/scan_00188/00021_00188_indoors_180_040.png indoors/scene_00021/scan_00188/00021_00188_indoors_180_040_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_180_040_depth_mask.npy
74
+ indoors/scene_00021/scan_00188/00021_00188_indoors_210_050.png indoors/scene_00021/scan_00188/00021_00188_indoors_210_050_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_210_050_depth_mask.npy
75
+ indoors/scene_00021/scan_00188/00021_00188_indoors_130_020.png indoors/scene_00021/scan_00188/00021_00188_indoors_130_020_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_130_020_depth_mask.npy
76
+ indoors/scene_00021/scan_00188/00021_00188_indoors_170_000.png indoors/scene_00021/scan_00188/00021_00188_indoors_170_000_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_170_000_depth_mask.npy
77
+ indoors/scene_00021/scan_00188/00021_00188_indoors_230_020.png indoors/scene_00021/scan_00188/00021_00188_indoors_230_020_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_230_020_depth_mask.npy
78
+ indoors/scene_00021/scan_00188/00021_00188_indoors_200_020.png indoors/scene_00021/scan_00188/00021_00188_indoors_200_020_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_200_020_depth_mask.npy
79
+ indoors/scene_00021/scan_00188/00021_00188_indoors_190_030.png indoors/scene_00021/scan_00188/00021_00188_indoors_190_030_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_190_030_depth_mask.npy
80
+ indoors/scene_00021/scan_00188/00021_00188_indoors_240_040.png indoors/scene_00021/scan_00188/00021_00188_indoors_240_040_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_240_040_depth_mask.npy
81
+ indoors/scene_00021/scan_00188/00021_00188_indoors_120_010.png indoors/scene_00021/scan_00188/00021_00188_indoors_120_010_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_120_010_depth_mask.npy
82
+ indoors/scene_00021/scan_00188/00021_00188_indoors_130_000.png indoors/scene_00021/scan_00188/00021_00188_indoors_130_000_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_130_000_depth_mask.npy
83
+ indoors/scene_00021/scan_00188/00021_00188_indoors_170_020.png indoors/scene_00021/scan_00188/00021_00188_indoors_170_020_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_170_020_depth_mask.npy
84
+ indoors/scene_00021/scan_00188/00021_00188_indoors_210_030.png indoors/scene_00021/scan_00188/00021_00188_indoors_210_030_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_210_030_depth_mask.npy
85
+ indoors/scene_00021/scan_00188/00021_00188_indoors_110_020.png indoors/scene_00021/scan_00188/00021_00188_indoors_110_020_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_110_020_depth_mask.npy
86
+ indoors/scene_00021/scan_00188/00021_00188_indoors_250_000.png indoors/scene_00021/scan_00188/00021_00188_indoors_250_000_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_250_000_depth_mask.npy
87
+ indoors/scene_00021/scan_00188/00021_00188_indoors_150_000.png indoors/scene_00021/scan_00188/00021_00188_indoors_150_000_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_150_000_depth_mask.npy
88
+ indoors/scene_00021/scan_00188/00021_00188_indoors_090_020.png indoors/scene_00021/scan_00188/00021_00188_indoors_090_020_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_090_020_depth_mask.npy
89
+ indoors/scene_00021/scan_00188/00021_00188_indoors_220_040.png indoors/scene_00021/scan_00188/00021_00188_indoors_220_040_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_220_040_depth_mask.npy
90
+ indoors/scene_00021/scan_00188/00021_00188_indoors_100_030.png indoors/scene_00021/scan_00188/00021_00188_indoors_100_030_depth.npy indoors/scene_00021/scan_00188/00021_00188_indoors_100_030_depth_mask.npy
91
+ indoors/scene_00021/scan_00192/00021_00192_indoors_310_010.png indoors/scene_00021/scan_00192/00021_00192_indoors_310_010_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_310_010_depth_mask.npy
92
+ indoors/scene_00021/scan_00192/00021_00192_indoors_010_010.png indoors/scene_00021/scan_00192/00021_00192_indoors_010_010_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_010_010_depth_mask.npy
93
+ indoors/scene_00021/scan_00192/00021_00192_indoors_350_030.png indoors/scene_00021/scan_00192/00021_00192_indoors_350_030_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_350_030_depth_mask.npy
94
+ indoors/scene_00021/scan_00192/00021_00192_indoors_000_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_000_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_000_000_depth_mask.npy
95
+ indoors/scene_00021/scan_00192/00021_00192_indoors_340_020.png indoors/scene_00021/scan_00192/00021_00192_indoors_340_020_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_340_020_depth_mask.npy
96
+ indoors/scene_00021/scan_00192/00021_00192_indoors_240_020.png indoors/scene_00021/scan_00192/00021_00192_indoors_240_020_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_240_020_depth_mask.npy
97
+ indoors/scene_00021/scan_00192/00021_00192_indoors_300_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_300_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_300_000_depth_mask.npy
98
+ indoors/scene_00021/scan_00192/00021_00192_indoors_020_020.png indoors/scene_00021/scan_00192/00021_00192_indoors_020_020_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_020_020_depth_mask.npy
99
+ indoors/scene_00021/scan_00192/00021_00192_indoors_320_020.png indoors/scene_00021/scan_00192/00021_00192_indoors_320_020_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_320_020_depth_mask.npy
100
+ indoors/scene_00021/scan_00192/00021_00192_indoors_330_030.png indoors/scene_00021/scan_00192/00021_00192_indoors_330_030_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_330_030_depth_mask.npy
101
+ indoors/scene_00021/scan_00192/00021_00192_indoors_030_030.png indoors/scene_00021/scan_00192/00021_00192_indoors_030_030_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_030_030_depth_mask.npy
102
+ indoors/scene_00021/scan_00192/00021_00192_indoors_020_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_020_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_020_000_depth_mask.npy
103
+ indoors/scene_00021/scan_00192/00021_00192_indoors_220_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_220_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_220_000_depth_mask.npy
104
+ indoors/scene_00021/scan_00192/00021_00192_indoors_320_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_320_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_320_000_depth_mask.npy
105
+ indoors/scene_00021/scan_00192/00021_00192_indoors_230_010.png indoors/scene_00021/scan_00192/00021_00192_indoors_230_010_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_230_010_depth_mask.npy
106
+ indoors/scene_00021/scan_00192/00021_00192_indoors_330_010.png indoors/scene_00021/scan_00192/00021_00192_indoors_330_010_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_330_010_depth_mask.npy
107
+ indoors/scene_00021/scan_00192/00021_00192_indoors_030_010.png indoors/scene_00021/scan_00192/00021_00192_indoors_030_010_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_030_010_depth_mask.npy
108
+ indoors/scene_00021/scan_00192/00021_00192_indoors_310_030.png indoors/scene_00021/scan_00192/00021_00192_indoors_310_030_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_310_030_depth_mask.npy
109
+ indoors/scene_00021/scan_00192/00021_00192_indoors_010_030.png indoors/scene_00021/scan_00192/00021_00192_indoors_010_030_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_010_030_depth_mask.npy
110
+ indoors/scene_00021/scan_00192/00021_00192_indoors_350_010.png indoors/scene_00021/scan_00192/00021_00192_indoors_350_010_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_350_010_depth_mask.npy
111
+ indoors/scene_00021/scan_00192/00021_00192_indoors_000_020.png indoors/scene_00021/scan_00192/00021_00192_indoors_000_020_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_000_020_depth_mask.npy
112
+ indoors/scene_00021/scan_00192/00021_00192_indoors_340_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_340_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_340_000_depth_mask.npy
113
+ indoors/scene_00021/scan_00192/00021_00192_indoors_240_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_240_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_240_000_depth_mask.npy
114
+ indoors/scene_00021/scan_00192/00021_00192_indoors_300_020.png indoors/scene_00021/scan_00192/00021_00192_indoors_300_020_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_300_020_depth_mask.npy
115
+ indoors/scene_00021/scan_00192/00021_00192_indoors_040_000.png indoors/scene_00021/scan_00192/00021_00192_indoors_040_000_depth.npy indoors/scene_00021/scan_00192/00021_00192_indoors_040_000_depth_mask.npy
116
+ indoors/scene_00019/scan_00183/00019_00183_indoors_300_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_300_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_300_050_depth_mask.npy
117
+ indoors/scene_00019/scan_00183/00019_00183_indoors_290_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_290_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_290_000_depth_mask.npy
118
+ indoors/scene_00019/scan_00183/00019_00183_indoors_260_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_260_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_260_000_depth_mask.npy
119
+ indoors/scene_00019/scan_00183/00019_00183_indoors_190_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_190_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_190_040_depth_mask.npy
120
+ indoors/scene_00019/scan_00183/00019_00183_indoors_200_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_200_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_200_050_depth_mask.npy
121
+ indoors/scene_00019/scan_00183/00019_00183_indoors_000_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_000_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_000_010_depth_mask.npy
122
+ indoors/scene_00019/scan_00183/00019_00183_indoors_040_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_040_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_040_030_depth_mask.npy
123
+ indoors/scene_00019/scan_00183/00019_00183_indoors_290_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_290_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_290_040_depth_mask.npy
124
+ indoors/scene_00019/scan_00183/00019_00183_indoors_060_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_060_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_060_000_depth_mask.npy
125
+ indoors/scene_00019/scan_00183/00019_00183_indoors_300_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_300_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_300_010_depth_mask.npy
126
+ indoors/scene_00019/scan_00183/00019_00183_indoors_140_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_140_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_140_030_depth_mask.npy
127
+ indoors/scene_00019/scan_00183/00019_00183_indoors_220_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_220_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_220_020_depth_mask.npy
128
+ indoors/scene_00019/scan_00183/00019_00183_indoors_280_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_280_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_280_050_depth_mask.npy
129
+ indoors/scene_00019/scan_00183/00019_00183_indoors_310_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_310_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_310_000_depth_mask.npy
130
+ indoors/scene_00019/scan_00183/00019_00183_indoors_150_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_150_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_150_020_depth_mask.npy
131
+ indoors/scene_00019/scan_00183/00019_00183_indoors_230_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_230_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_230_030_depth_mask.npy
132
+ indoors/scene_00019/scan_00183/00019_00183_indoors_180_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_180_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_180_010_depth_mask.npy
133
+ indoors/scene_00019/scan_00183/00019_00183_indoors_310_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_310_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_310_040_depth_mask.npy
134
+ indoors/scene_00019/scan_00183/00019_00183_indoors_110_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_110_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_110_000_depth_mask.npy
135
+ indoors/scene_00019/scan_00183/00019_00183_indoors_270_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_270_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_270_010_depth_mask.npy
136
+ indoors/scene_00019/scan_00183/00019_00183_indoors_350_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_350_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_350_020_depth_mask.npy
137
+ indoors/scene_00019/scan_00183/00019_00183_indoors_180_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_180_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_180_050_depth_mask.npy
138
+ indoors/scene_00019/scan_00183/00019_00183_indoors_010_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_010_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_010_000_depth_mask.npy
139
+ indoors/scene_00019/scan_00183/00019_00183_indoors_270_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_270_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_270_040_depth_mask.npy
140
+ indoors/scene_00019/scan_00183/00019_00183_indoors_110_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_110_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_110_050_depth_mask.npy
141
+ indoors/scene_00019/scan_00183/00019_00183_indoors_330_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_330_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_330_020_depth_mask.npy
142
+ indoors/scene_00019/scan_00183/00019_00183_indoors_080_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_080_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_080_000_depth_mask.npy
143
+ indoors/scene_00019/scan_00183/00019_00183_indoors_170_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_170_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_170_000_depth_mask.npy
144
+ indoors/scene_00019/scan_00183/00019_00183_indoors_130_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_130_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_130_020_depth_mask.npy
145
+ indoors/scene_00019/scan_00183/00019_00183_indoors_250_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_250_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_250_030_depth_mask.npy
146
+ indoors/scene_00019/scan_00183/00019_00183_indoors_170_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_170_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_170_040_depth_mask.npy
147
+ indoors/scene_00019/scan_00183/00019_00183_indoors_120_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_120_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_120_030_depth_mask.npy
148
+ indoors/scene_00019/scan_00183/00019_00183_indoors_240_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_240_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_240_020_depth_mask.npy
149
+ indoors/scene_00019/scan_00183/00019_00183_indoors_160_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_160_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_160_050_depth_mask.npy
150
+ indoors/scene_00019/scan_00183/00019_00183_indoors_020_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_020_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_020_030_depth_mask.npy
151
+ indoors/scene_00019/scan_00183/00019_00183_indoors_320_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_320_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_320_030_depth_mask.npy
152
+ indoors/scene_00019/scan_00183/00019_00183_indoors_260_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_260_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_260_050_depth_mask.npy
153
+ indoors/scene_00019/scan_00183/00019_00183_indoors_000_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_000_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_000_040_depth_mask.npy
154
+ indoors/scene_00019/scan_00183/00019_00183_indoors_160_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_160_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_160_010_depth_mask.npy
155
+ indoors/scene_00019/scan_00183/00019_00183_indoors_330_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_330_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_330_000_depth_mask.npy
156
+ indoors/scene_00019/scan_00183/00019_00183_indoors_050_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_050_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_050_010_depth_mask.npy
157
+ indoors/scene_00019/scan_00183/00019_00183_indoors_130_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_130_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_130_040_depth_mask.npy
158
+ indoors/scene_00019/scan_00183/00019_00183_indoors_210_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_210_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_210_030_depth_mask.npy
159
+ indoors/scene_00019/scan_00183/00019_00183_indoors_170_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_170_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_170_020_depth_mask.npy
160
+ indoors/scene_00019/scan_00183/00019_00183_indoors_030_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_030_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_030_040_depth_mask.npy
161
+ indoors/scene_00019/scan_00183/00019_00183_indoors_350_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_350_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_350_050_depth_mask.npy
162
+ indoors/scene_00019/scan_00183/00019_00183_indoors_250_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_250_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_250_010_depth_mask.npy
163
+ indoors/scene_00019/scan_00183/00019_00183_indoors_130_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_130_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_130_000_depth_mask.npy
164
+ indoors/scene_00019/scan_00183/00019_00183_indoors_280_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_280_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_280_020_depth_mask.npy
165
+ indoors/scene_00019/scan_00183/00019_00183_indoors_240_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_240_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_240_000_depth_mask.npy
166
+ indoors/scene_00019/scan_00183/00019_00183_indoors_120_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_120_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_120_010_depth_mask.npy
167
+ indoors/scene_00019/scan_00183/00019_00183_indoors_320_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_320_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_320_010_depth_mask.npy
168
+ indoors/scene_00019/scan_00183/00019_00183_indoors_040_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_040_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_040_000_depth_mask.npy
169
+ indoors/scene_00019/scan_00183/00019_00183_indoors_240_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_240_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_240_040_depth_mask.npy
170
+ indoors/scene_00019/scan_00183/00019_00183_indoors_020_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_020_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_020_050_depth_mask.npy
171
+ indoors/scene_00019/scan_00183/00019_00183_indoors_340_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_340_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_340_040_depth_mask.npy
172
+ indoors/scene_00019/scan_00183/00019_00183_indoors_200_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_200_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_200_020_depth_mask.npy
173
+ indoors/scene_00019/scan_00183/00019_00183_indoors_160_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_160_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_160_030_depth_mask.npy
174
+ indoors/scene_00019/scan_00183/00019_00183_indoors_260_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_260_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_260_020_depth_mask.npy
175
+ indoors/scene_00019/scan_00183/00019_00183_indoors_340_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_340_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_340_010_depth_mask.npy
176
+ indoors/scene_00019/scan_00183/00019_00183_indoors_220_040.png indoors/scene_00019/scan_00183/00019_00183_indoors_220_040_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_220_040_depth_mask.npy
177
+ indoors/scene_00019/scan_00183/00019_00183_indoors_140_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_140_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_140_050_depth_mask.npy
178
+ indoors/scene_00019/scan_00183/00019_00183_indoors_300_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_300_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_300_030_depth_mask.npy
179
+ indoors/scene_00019/scan_00183/00019_00183_indoors_140_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_140_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_140_010_depth_mask.npy
180
+ indoors/scene_00019/scan_00183/00019_00183_indoors_310_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_310_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_310_020_depth_mask.npy
181
+ indoors/scene_00019/scan_00183/00019_00183_indoors_230_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_230_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_230_010_depth_mask.npy
182
+ indoors/scene_00019/scan_00183/00019_00183_indoors_150_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_150_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_150_000_depth_mask.npy
183
+ indoors/scene_00019/scan_00183/00019_00183_indoors_180_030.png indoors/scene_00019/scan_00183/00019_00183_indoors_180_030_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_180_030_depth_mask.npy
184
+ indoors/scene_00019/scan_00183/00019_00183_indoors_330_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_330_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_330_050_depth_mask.npy
185
+ indoors/scene_00019/scan_00183/00019_00183_indoors_350_000.png indoors/scene_00019/scan_00183/00019_00183_indoors_350_000_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_350_000_depth_mask.npy
186
+ indoors/scene_00019/scan_00183/00019_00183_indoors_030_010.png indoors/scene_00019/scan_00183/00019_00183_indoors_030_010_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_030_010_depth_mask.npy
187
+ indoors/scene_00019/scan_00183/00019_00183_indoors_230_050.png indoors/scene_00019/scan_00183/00019_00183_indoors_230_050_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_230_050_depth_mask.npy
188
+ indoors/scene_00019/scan_00183/00019_00183_indoors_010_020.png indoors/scene_00019/scan_00183/00019_00183_indoors_010_020_depth.npy indoors/scene_00019/scan_00183/00019_00183_indoors_010_020_depth_mask.npy
189
+ indoors/scene_00020/scan_00184/00020_00184_indoors_130_030.png indoors/scene_00020/scan_00184/00020_00184_indoors_130_030_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_130_030_depth_mask.npy
190
+ indoors/scene_00020/scan_00184/00020_00184_indoors_050_020.png indoors/scene_00020/scan_00184/00020_00184_indoors_050_020_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_050_020_depth_mask.npy
191
+ indoors/scene_00020/scan_00184/00020_00184_indoors_080_010.png indoors/scene_00020/scan_00184/00020_00184_indoors_080_010_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_080_010_depth_mask.npy
192
+ indoors/scene_00020/scan_00184/00020_00184_indoors_180_010.png indoors/scene_00020/scan_00184/00020_00184_indoors_180_010_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_180_010_depth_mask.npy
193
+ indoors/scene_00020/scan_00184/00020_00184_indoors_290_040.png indoors/scene_00020/scan_00184/00020_00184_indoors_290_040_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_290_040_depth_mask.npy
194
+ indoors/scene_00020/scan_00184/00020_00184_indoors_190_000.png indoors/scene_00020/scan_00184/00020_00184_indoors_190_000_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_190_000_depth_mask.npy
195
+ indoors/scene_00020/scan_00184/00020_00184_indoors_200_010.png indoors/scene_00020/scan_00184/00020_00184_indoors_200_010_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_200_010_depth_mask.npy
196
+ indoors/scene_00020/scan_00184/00020_00184_indoors_120_020.png indoors/scene_00020/scan_00184/00020_00184_indoors_120_020_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_120_020_depth_mask.npy
197
+ indoors/scene_00020/scan_00184/00020_00184_indoors_060_010.png indoors/scene_00020/scan_00184/00020_00184_indoors_060_010_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_060_010_depth_mask.npy
198
+ indoors/scene_00020/scan_00184/00020_00184_indoors_140_020.png indoors/scene_00020/scan_00184/00020_00184_indoors_140_020_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_140_020_depth_mask.npy
199
+ indoors/scene_00020/scan_00184/00020_00184_indoors_160_010.png indoors/scene_00020/scan_00184/00020_00184_indoors_160_010_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_160_010_depth_mask.npy
200
+ indoors/scene_00020/scan_00184/00020_00184_indoors_100_000.png indoors/scene_00020/scan_00184/00020_00184_indoors_100_000_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_100_000_depth_mask.npy
201
+ indoors/scene_00020/scan_00184/00020_00184_indoors_110_010.png indoors/scene_00020/scan_00184/00020_00184_indoors_110_010_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_110_010_depth_mask.npy
202
+ indoors/scene_00020/scan_00184/00020_00184_indoors_070_000.png indoors/scene_00020/scan_00184/00020_00184_indoors_070_000_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_070_000_depth_mask.npy
203
+ indoors/scene_00020/scan_00184/00020_00184_indoors_170_000.png indoors/scene_00020/scan_00184/00020_00184_indoors_170_000_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_170_000_depth_mask.npy
204
+ indoors/scene_00020/scan_00184/00020_00184_indoors_060_030.png indoors/scene_00020/scan_00184/00020_00184_indoors_060_030_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_060_030_depth_mask.npy
205
+ indoors/scene_00020/scan_00184/00020_00184_indoors_140_000.png indoors/scene_00020/scan_00184/00020_00184_indoors_140_000_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_140_000_depth_mask.npy
206
+ indoors/scene_00020/scan_00184/00020_00184_indoors_160_030.png indoors/scene_00020/scan_00184/00020_00184_indoors_160_030_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_160_030_depth_mask.npy
207
+ indoors/scene_00020/scan_00184/00020_00184_indoors_110_030.png indoors/scene_00020/scan_00184/00020_00184_indoors_110_030_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_110_030_depth_mask.npy
208
+ indoors/scene_00020/scan_00184/00020_00184_indoors_070_020.png indoors/scene_00020/scan_00184/00020_00184_indoors_070_020_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_070_020_depth_mask.npy
209
+ indoors/scene_00020/scan_00184/00020_00184_indoors_170_020.png indoors/scene_00020/scan_00184/00020_00184_indoors_170_020_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_170_020_depth_mask.npy
210
+ indoors/scene_00020/scan_00184/00020_00184_indoors_130_010.png indoors/scene_00020/scan_00184/00020_00184_indoors_130_010_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_130_010_depth_mask.npy
211
+ indoors/scene_00020/scan_00184/00020_00184_indoors_050_000.png indoors/scene_00020/scan_00184/00020_00184_indoors_050_000_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_050_000_depth_mask.npy
212
+ indoors/scene_00020/scan_00184/00020_00184_indoors_180_030.png indoors/scene_00020/scan_00184/00020_00184_indoors_180_030_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_180_030_depth_mask.npy
213
+ indoors/scene_00020/scan_00184/00020_00184_indoors_190_020.png indoors/scene_00020/scan_00184/00020_00184_indoors_190_020_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_190_020_depth_mask.npy
214
+ indoors/scene_00020/scan_00184/00020_00184_indoors_200_030.png indoors/scene_00020/scan_00184/00020_00184_indoors_200_030_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_200_030_depth_mask.npy
215
+ indoors/scene_00020/scan_00184/00020_00184_indoors_120_000.png indoors/scene_00020/scan_00184/00020_00184_indoors_120_000_depth.npy indoors/scene_00020/scan_00184/00020_00184_indoors_120_000_depth_mask.npy
216
+ indoors/scene_00020/scan_00187/00020_00187_indoors_210_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_210_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_210_000_depth_mask.npy
217
+ indoors/scene_00020/scan_00187/00020_00187_indoors_310_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_310_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_310_000_depth_mask.npy
218
+ indoors/scene_00020/scan_00187/00020_00187_indoors_110_040.png indoors/scene_00020/scan_00187/00020_00187_indoors_110_040_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_110_040_depth_mask.npy
219
+ indoors/scene_00020/scan_00187/00020_00187_indoors_280_010.png indoors/scene_00020/scan_00187/00020_00187_indoors_280_010_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_280_010_depth_mask.npy
220
+ indoors/scene_00020/scan_00187/00020_00187_indoors_250_020.png indoors/scene_00020/scan_00187/00020_00187_indoors_250_020_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_250_020_depth_mask.npy
221
+ indoors/scene_00020/scan_00187/00020_00187_indoors_290_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_290_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_290_000_depth_mask.npy
222
+ indoors/scene_00020/scan_00187/00020_00187_indoors_240_030.png indoors/scene_00020/scan_00187/00020_00187_indoors_240_030_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_240_030_depth_mask.npy
223
+ indoors/scene_00020/scan_00187/00020_00187_indoors_200_010.png indoors/scene_00020/scan_00187/00020_00187_indoors_200_010_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_200_010_depth_mask.npy
224
+ indoors/scene_00020/scan_00187/00020_00187_indoors_190_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_190_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_190_000_depth_mask.npy
225
+ indoors/scene_00020/scan_00187/00020_00187_indoors_300_010.png indoors/scene_00020/scan_00187/00020_00187_indoors_300_010_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_300_010_depth_mask.npy
226
+ indoors/scene_00020/scan_00187/00020_00187_indoors_000_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_000_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_000_000_depth_mask.npy
227
+ indoors/scene_00020/scan_00187/00020_00187_indoors_260_010.png indoors/scene_00020/scan_00187/00020_00187_indoors_260_010_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_260_010_depth_mask.npy
228
+ indoors/scene_00020/scan_00187/00020_00187_indoors_100_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_100_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_100_000_depth_mask.npy
229
+ indoors/scene_00020/scan_00187/00020_00187_indoors_220_030.png indoors/scene_00020/scan_00187/00020_00187_indoors_220_030_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_220_030_depth_mask.npy
230
+ indoors/scene_00020/scan_00187/00020_00187_indoors_000_040.png indoors/scene_00020/scan_00187/00020_00187_indoors_000_040_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_000_040_depth_mask.npy
231
+ indoors/scene_00020/scan_00187/00020_00187_indoors_170_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_170_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_170_000_depth_mask.npy
232
+ indoors/scene_00020/scan_00187/00020_00187_indoors_230_020.png indoors/scene_00020/scan_00187/00020_00187_indoors_230_020_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_230_020_depth_mask.npy
233
+ indoors/scene_00020/scan_00187/00020_00187_indoors_270_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_270_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_270_000_depth_mask.npy
234
+ indoors/scene_00020/scan_00187/00020_00187_indoors_110_010.png indoors/scene_00020/scan_00187/00020_00187_indoors_110_010_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_110_010_depth_mask.npy
235
+ indoors/scene_00020/scan_00187/00020_00187_indoors_000_020.png indoors/scene_00020/scan_00187/00020_00187_indoors_000_020_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_000_020_depth_mask.npy
236
+ indoors/scene_00020/scan_00187/00020_00187_indoors_260_030.png indoors/scene_00020/scan_00187/00020_00187_indoors_260_030_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_260_030_depth_mask.npy
237
+ indoors/scene_00020/scan_00187/00020_00187_indoors_140_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_140_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_140_000_depth_mask.npy
238
+ indoors/scene_00020/scan_00187/00020_00187_indoors_220_010.png indoors/scene_00020/scan_00187/00020_00187_indoors_220_010_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_220_010_depth_mask.npy
239
+ indoors/scene_00020/scan_00187/00020_00187_indoors_230_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_230_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_230_000_depth_mask.npy
240
+ indoors/scene_00020/scan_00187/00020_00187_indoors_010_030.png indoors/scene_00020/scan_00187/00020_00187_indoors_010_030_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_010_030_depth_mask.npy
241
+ indoors/scene_00020/scan_00187/00020_00187_indoors_270_020.png indoors/scene_00020/scan_00187/00020_00187_indoors_270_020_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_270_020_depth_mask.npy
242
+ indoors/scene_00020/scan_00187/00020_00187_indoors_210_020.png indoors/scene_00020/scan_00187/00020_00187_indoors_210_020_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_210_020_depth_mask.npy
243
+ indoors/scene_00020/scan_00187/00020_00187_indoors_280_030.png indoors/scene_00020/scan_00187/00020_00187_indoors_280_030_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_280_030_depth_mask.npy
244
+ indoors/scene_00020/scan_00187/00020_00187_indoors_250_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_250_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_250_000_depth_mask.npy
245
+ indoors/scene_00020/scan_00187/00020_00187_indoors_290_020.png indoors/scene_00020/scan_00187/00020_00187_indoors_290_020_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_290_020_depth_mask.npy
246
+ indoors/scene_00020/scan_00187/00020_00187_indoors_100_030.png indoors/scene_00020/scan_00187/00020_00187_indoors_100_030_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_100_030_depth_mask.npy
247
+ indoors/scene_00020/scan_00187/00020_00187_indoors_120_000.png indoors/scene_00020/scan_00187/00020_00187_indoors_120_000_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_120_000_depth_mask.npy
248
+ indoors/scene_00020/scan_00187/00020_00187_indoors_240_010.png indoors/scene_00020/scan_00187/00020_00187_indoors_240_010_depth.npy indoors/scene_00020/scan_00187/00020_00187_indoors_240_010_depth_mask.npy
249
+ indoors/scene_00020/scan_00185/00020_00185_indoors_000_020.png indoors/scene_00020/scan_00185/00020_00185_indoors_000_020_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_000_020_depth_mask.npy
250
+ indoors/scene_00020/scan_00185/00020_00185_indoors_340_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_340_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_340_000_depth_mask.npy
251
+ indoors/scene_00020/scan_00185/00020_00185_indoors_040_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_040_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_040_000_depth_mask.npy
252
+ indoors/scene_00020/scan_00185/00020_00185_indoors_050_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_050_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_050_010_depth_mask.npy
253
+ indoors/scene_00020/scan_00185/00020_00185_indoors_010_030.png indoors/scene_00020/scan_00185/00020_00185_indoors_010_030_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_010_030_depth_mask.npy
254
+ indoors/scene_00020/scan_00185/00020_00185_indoors_350_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_350_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_350_010_depth_mask.npy
255
+ indoors/scene_00020/scan_00185/00020_00185_indoors_330_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_330_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_330_010_depth_mask.npy
256
+ indoors/scene_00020/scan_00185/00020_00185_indoors_180_030.png indoors/scene_00020/scan_00185/00020_00185_indoors_180_030_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_180_030_depth_mask.npy
257
+ indoors/scene_00020/scan_00185/00020_00185_indoors_150_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_150_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_150_000_depth_mask.npy
258
+ indoors/scene_00020/scan_00185/00020_00185_indoors_030_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_030_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_030_010_depth_mask.npy
259
+ indoors/scene_00020/scan_00185/00020_00185_indoors_290_020.png indoors/scene_00020/scan_00185/00020_00185_indoors_290_020_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_290_020_depth_mask.npy
260
+ indoors/scene_00020/scan_00185/00020_00185_indoors_020_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_020_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_020_000_depth_mask.npy
261
+ indoors/scene_00020/scan_00185/00020_00185_indoors_300_030.png indoors/scene_00020/scan_00185/00020_00185_indoors_300_030_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_300_030_depth_mask.npy
262
+ indoors/scene_00020/scan_00185/00020_00185_indoors_320_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_320_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_320_000_depth_mask.npy
263
+ indoors/scene_00020/scan_00185/00020_00185_indoors_080_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_080_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_080_010_depth_mask.npy
264
+ indoors/scene_00020/scan_00185/00020_00185_indoors_280_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_280_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_280_010_depth_mask.npy
265
+ indoors/scene_00020/scan_00185/00020_00185_indoors_290_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_290_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_290_000_depth_mask.npy
266
+ indoors/scene_00020/scan_00185/00020_00185_indoors_020_020.png indoors/scene_00020/scan_00185/00020_00185_indoors_020_020_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_020_020_depth_mask.npy
267
+ indoors/scene_00020/scan_00185/00020_00185_indoors_090_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_090_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_090_000_depth_mask.npy
268
+ indoors/scene_00020/scan_00185/00020_00185_indoors_300_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_300_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_300_010_depth_mask.npy
269
+ indoors/scene_00020/scan_00185/00020_00185_indoors_190_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_190_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_190_000_depth_mask.npy
270
+ indoors/scene_00020/scan_00185/00020_00185_indoors_000_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_000_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_000_000_depth_mask.npy
271
+ indoors/scene_00020/scan_00185/00020_00185_indoors_340_020.png indoors/scene_00020/scan_00185/00020_00185_indoors_340_020_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_340_020_depth_mask.npy
272
+ indoors/scene_00020/scan_00185/00020_00185_indoors_160_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_160_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_160_010_depth_mask.npy
273
+ indoors/scene_00020/scan_00185/00020_00185_indoors_070_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_070_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_070_000_depth_mask.npy
274
+ indoors/scene_00020/scan_00185/00020_00185_indoors_170_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_170_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_170_000_depth_mask.npy
275
+ indoors/scene_00020/scan_00185/00020_00185_indoors_270_000.png indoors/scene_00020/scan_00185/00020_00185_indoors_270_000_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_270_000_depth_mask.npy
276
+ indoors/scene_00020/scan_00185/00020_00185_indoors_010_010.png indoors/scene_00020/scan_00185/00020_00185_indoors_010_010_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_010_010_depth_mask.npy
277
+ indoors/scene_00020/scan_00185/00020_00185_indoors_350_030.png indoors/scene_00020/scan_00185/00020_00185_indoors_350_030_depth.npy indoors/scene_00020/scan_00185/00020_00185_indoors_350_030_depth_mask.npy
278
+ indoors/scene_00020/scan_00186/00020_00186_indoors_020_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_020_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_020_000_depth_mask.npy
279
+ indoors/scene_00020/scan_00186/00020_00186_indoors_220_040.png indoors/scene_00020/scan_00186/00020_00186_indoors_220_040_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_220_040_depth_mask.npy
280
+ indoors/scene_00020/scan_00186/00020_00186_indoors_260_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_260_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_260_020_depth_mask.npy
281
+ indoors/scene_00020/scan_00186/00020_00186_indoors_160_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_160_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_160_020_depth_mask.npy
282
+ indoors/scene_00020/scan_00186/00020_00186_indoors_320_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_320_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_320_000_depth_mask.npy
283
+ indoors/scene_00020/scan_00186/00020_00186_indoors_090_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_090_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_090_020_depth_mask.npy
284
+ indoors/scene_00020/scan_00186/00020_00186_indoors_330_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_330_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_330_010_depth_mask.npy
285
+ indoors/scene_00020/scan_00186/00020_00186_indoors_080_030.png indoors/scene_00020/scan_00186/00020_00186_indoors_080_030_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_080_030_depth_mask.npy
286
+ indoors/scene_00020/scan_00186/00020_00186_indoors_030_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_030_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_030_010_depth_mask.npy
287
+ indoors/scene_00020/scan_00186/00020_00186_indoors_230_050.png indoors/scene_00020/scan_00186/00020_00186_indoors_230_050_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_230_050_depth_mask.npy
288
+ indoors/scene_00020/scan_00186/00020_00186_indoors_130_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_130_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_130_010_depth_mask.npy
289
+ indoors/scene_00020/scan_00186/00020_00186_indoors_250_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_250_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_250_000_depth_mask.npy
290
+ indoors/scene_00020/scan_00186/00020_00186_indoors_150_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_150_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_150_010_depth_mask.npy
291
+ indoors/scene_00020/scan_00186/00020_00186_indoors_230_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_230_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_230_000_depth_mask.npy
292
+ indoors/scene_00020/scan_00186/00020_00186_indoors_050_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_050_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_050_010_depth_mask.npy
293
+ indoors/scene_00020/scan_00186/00020_00186_indoors_250_050.png indoors/scene_00020/scan_00186/00020_00186_indoors_250_050_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_250_050_depth_mask.npy
294
+ indoors/scene_00020/scan_00186/00020_00186_indoors_070_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_070_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_070_020_depth_mask.npy
295
+ indoors/scene_00020/scan_00186/00020_00186_indoors_110_030.png indoors/scene_00020/scan_00186/00020_00186_indoors_110_030_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_110_030_depth_mask.npy
296
+ indoors/scene_00020/scan_00186/00020_00186_indoors_340_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_340_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_340_000_depth_mask.npy
297
+ indoors/scene_00020/scan_00186/00020_00186_indoors_140_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_140_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_140_000_depth_mask.npy
298
+ indoors/scene_00020/scan_00186/00020_00186_indoors_220_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_220_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_220_010_depth_mask.npy
299
+ indoors/scene_00020/scan_00186/00020_00186_indoors_040_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_040_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_040_000_depth_mask.npy
300
+ indoors/scene_00020/scan_00186/00020_00186_indoors_060_030.png indoors/scene_00020/scan_00186/00020_00186_indoors_060_030_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_060_030_depth_mask.npy
301
+ indoors/scene_00020/scan_00186/00020_00186_indoors_240_040.png indoors/scene_00020/scan_00186/00020_00186_indoors_240_040_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_240_040_depth_mask.npy
302
+ indoors/scene_00020/scan_00186/00020_00186_indoors_150_030.png indoors/scene_00020/scan_00186/00020_00186_indoors_150_030_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_150_030_depth_mask.npy
303
+ indoors/scene_00020/scan_00186/00020_00186_indoors_170_040.png indoors/scene_00020/scan_00186/00020_00186_indoors_170_040_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_170_040_depth_mask.npy
304
+ indoors/scene_00020/scan_00186/00020_00186_indoors_210_050.png indoors/scene_00020/scan_00186/00020_00186_indoors_210_050_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_210_050_depth_mask.npy
305
+ indoors/scene_00020/scan_00186/00020_00186_indoors_070_040.png indoors/scene_00020/scan_00186/00020_00186_indoors_070_040_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_070_040_depth_mask.npy
306
+ indoors/scene_00020/scan_00186/00020_00186_indoors_250_030.png indoors/scene_00020/scan_00186/00020_00186_indoors_250_030_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_250_030_depth_mask.npy
307
+ indoors/scene_00020/scan_00186/00020_00186_indoors_270_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_270_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_270_000_depth_mask.npy
308
+ indoors/scene_00020/scan_00186/00020_00186_indoors_200_040.png indoors/scene_00020/scan_00186/00020_00186_indoors_200_040_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_200_040_depth_mask.npy
309
+ indoors/scene_00020/scan_00186/00020_00186_indoors_190_050.png indoors/scene_00020/scan_00186/00020_00186_indoors_190_050_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_190_050_depth_mask.npy
310
+ indoors/scene_00020/scan_00186/00020_00186_indoors_000_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_000_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_000_000_depth_mask.npy
311
+ indoors/scene_00020/scan_00186/00020_00186_indoors_240_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_240_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_240_020_depth_mask.npy
312
+ indoors/scene_00020/scan_00186/00020_00186_indoors_140_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_140_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_140_020_depth_mask.npy
313
+ indoors/scene_00020/scan_00186/00020_00186_indoors_040_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_040_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_040_020_depth_mask.npy
314
+ indoors/scene_00020/scan_00186/00020_00186_indoors_120_020.png indoors/scene_00020/scan_00186/00020_00186_indoors_120_020_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_120_020_depth_mask.npy
315
+ indoors/scene_00020/scan_00186/00020_00186_indoors_100_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_100_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_100_010_depth_mask.npy
316
+ indoors/scene_00020/scan_00186/00020_00186_indoors_160_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_160_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_160_000_depth_mask.npy
317
+ indoors/scene_00020/scan_00186/00020_00186_indoors_260_040.png indoors/scene_00020/scan_00186/00020_00186_indoors_260_040_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_260_040_depth_mask.npy
318
+ indoors/scene_00020/scan_00186/00020_00186_indoors_060_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_060_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_060_000_depth_mask.npy
319
+ indoors/scene_00020/scan_00186/00020_00186_indoors_090_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_090_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_090_000_depth_mask.npy
320
+ indoors/scene_00020/scan_00186/00020_00186_indoors_230_030.png indoors/scene_00020/scan_00186/00020_00186_indoors_230_030_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_230_030_depth_mask.npy
321
+ indoors/scene_00020/scan_00186/00020_00186_indoors_210_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_210_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_210_000_depth_mask.npy
322
+ indoors/scene_00020/scan_00186/00020_00186_indoors_170_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_170_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_170_010_depth_mask.npy
323
+ indoors/scene_00020/scan_00186/00020_00186_indoors_080_010.png indoors/scene_00020/scan_00186/00020_00186_indoors_080_010_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_080_010_depth_mask.npy
324
+ indoors/scene_00020/scan_00186/00020_00186_indoors_130_030.png indoors/scene_00020/scan_00186/00020_00186_indoors_130_030_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_130_030_depth_mask.npy
325
+ indoors/scene_00020/scan_00186/00020_00186_indoors_110_000.png indoors/scene_00020/scan_00186/00020_00186_indoors_110_000_depth.npy indoors/scene_00020/scan_00186/00020_00186_indoors_110_000_depth_mask.npy
Lotus-2/datasets/eval/depth/data_split/diode/diode_val_outdoor_filename_list.txt ADDED
@@ -0,0 +1,446 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_350_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_350_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_350_020_depth_mask.npy
2
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_000_depth_mask.npy
3
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_050.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_050_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_050_depth_mask.npy
4
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_230_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_230_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_230_030_depth_mask.npy
5
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_040.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_040_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_040_depth_mask.npy
6
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_170_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_170_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_170_010_depth_mask.npy
7
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_010_depth_mask.npy
8
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_220_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_220_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_220_020_depth_mask.npy
9
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_040_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_040_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_040_030_depth_mask.npy
10
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_320_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_320_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_320_020_depth_mask.npy
11
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_000_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_000_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_000_010_depth_mask.npy
12
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_120_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_120_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_120_020_depth_mask.npy
13
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_090_040.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_090_040_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_090_040_depth_mask.npy
14
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_190_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_190_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_190_010_depth_mask.npy
15
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_200_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_200_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_200_000_depth_mask.npy
16
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_010_depth_mask.npy
17
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_000_depth_mask.npy
18
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_020_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_020_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_020_030_depth_mask.npy
19
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_240_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_240_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_240_020_depth_mask.npy
20
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_050.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_050_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_050_depth_mask.npy
21
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_040.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_040_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_040_depth_mask.npy
22
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_100_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_100_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_100_000_depth_mask.npy
23
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_030_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_030_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_030_020_depth_mask.npy
24
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_040.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_040_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_040_depth_mask.npy
25
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_110_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_110_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_110_010_depth_mask.npy
26
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_180_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_180_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_180_000_depth_mask.npy
27
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_210_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_210_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_210_010_depth_mask.npy
28
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_000_depth_mask.npy
29
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_310_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_310_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_310_010_depth_mask.npy
30
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_020_050.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_020_050_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_020_050_depth_mask.npy
31
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_300_020_depth_mask.npy
32
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_060_030_depth_mask.npy
33
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_340_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_340_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_340_000_depth_mask.npy
34
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_240_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_240_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_240_000_depth_mask.npy
35
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_290_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_290_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_290_030_depth_mask.npy
36
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_250_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_250_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_250_010_depth_mask.npy
37
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_030_040.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_030_040_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_030_040_depth_mask.npy
38
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_180_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_180_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_180_020_depth_mask.npy
39
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_310_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_310_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_310_030_depth_mask.npy
40
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_070_020_depth_mask.npy
41
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_010_020_depth_mask.npy
42
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_050_040.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_050_040_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_050_040_depth_mask.npy
43
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_230_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_230_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_230_010_depth_mask.npy
44
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_330_010.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_330_010_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_330_010_depth_mask.npy
45
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_080_030_depth_mask.npy
46
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_220_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_220_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_220_000_depth_mask.npy
47
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_200_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_200_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_200_030_depth_mask.npy
48
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_320_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_320_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_320_000_depth_mask.npy
49
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_090_020.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_090_020_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_090_020_depth_mask.npy
50
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_000_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_000_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_000_030_depth_mask.npy
51
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_120_000.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_120_000_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_120_000_depth_mask.npy
52
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_040_050.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_040_050_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_040_050_depth_mask.npy
53
+ outdoor/scene_00022/scan_00196/00022_00196_outdoor_100_030.png outdoor/scene_00022/scan_00196/00022_00196_outdoor_100_030_depth.npy outdoor/scene_00022/scan_00196/00022_00196_outdoor_100_030_depth_mask.npy
54
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_320_040.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_320_040_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_320_040_depth_mask.npy
55
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_020.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_020_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_020_depth_mask.npy
56
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_240_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_240_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_240_010_depth_mask.npy
57
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_200_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_200_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_200_030_depth_mask.npy
58
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_020.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_020_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_020_depth_mask.npy
59
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_220_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_220_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_220_000_depth_mask.npy
60
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_030_depth_mask.npy
61
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_240_050.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_240_050_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_240_050_depth_mask.npy
62
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_030_depth_mask.npy
63
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_310_020.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_310_020_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_310_020_depth_mask.npy
64
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_280_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_280_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_280_030_depth_mask.npy
65
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_330_050.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_330_050_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_330_050_depth_mask.npy
66
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_250_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_250_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_250_000_depth_mask.npy
67
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_050.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_050_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_050_depth_mask.npy
68
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_180_020.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_180_020_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_180_020_depth_mask.npy
69
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_010_depth_mask.npy
70
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_010_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_010_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_010_030_depth_mask.npy
71
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_050.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_050_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_050_depth_mask.npy
72
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_010_depth_mask.npy
73
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_020.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_020_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_020_depth_mask.npy
74
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_340_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_340_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_340_000_depth_mask.npy
75
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_020_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_020_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_020_010_depth_mask.npy
76
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_340_040.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_340_040_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_340_040_depth_mask.npy
77
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_140_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_140_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_140_000_depth_mask.npy
78
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_320_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_320_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_320_010_depth_mask.npy
79
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_210_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_210_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_210_010_depth_mask.npy
80
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_180_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_180_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_180_000_depth_mask.npy
81
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_150_030_depth_mask.npy
82
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_070_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_070_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_070_000_depth_mask.npy
83
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_330_020.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_330_020_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_330_020_depth_mask.npy
84
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_210_050.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_210_050_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_210_050_depth_mask.npy
85
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_350_030_depth_mask.npy
86
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_270_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_270_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_270_000_depth_mask.npy
87
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_000_depth_mask.npy
88
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_260_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_260_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_260_010_depth_mask.npy
89
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_200_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_200_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_200_000_depth_mask.npy
90
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_190_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_190_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_190_010_depth_mask.npy
91
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_040.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_040_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_000_040_depth_mask.npy
92
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_140_020.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_140_020_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_140_020_depth_mask.npy
93
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_220_030.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_220_030_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_220_030_depth_mask.npy
94
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_040.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_040_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_040_depth_mask.npy
95
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_190_040.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_190_040_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_190_040_depth_mask.npy
96
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_000_depth_mask.npy
97
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_050.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_050_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_050_depth_mask.npy
98
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_160_000_depth_mask.npy
99
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_300_010_depth_mask.npy
100
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_090_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_090_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_090_000_depth_mask.npy
101
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_040.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_040_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_290_040_depth_mask.npy
102
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_010_depth_mask.npy
103
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_310_000.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_310_000_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_310_000_depth_mask.npy
104
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_050.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_050_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_170_050_depth_mask.npy
105
+ outdoor/scene_00022/scan_00195/00022_00195_outdoor_280_010.png outdoor/scene_00022/scan_00195/00022_00195_outdoor_280_010_depth.npy outdoor/scene_00022/scan_00195/00022_00195_outdoor_280_010_depth_mask.npy
106
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_330_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_330_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_330_000_depth_mask.npy
107
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_050_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_050_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_050_010_depth_mask.npy
108
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_050.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_050_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_050_depth_mask.npy
109
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_210_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_210_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_210_030_depth_mask.npy
110
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_020_depth_mask.npy
111
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_010_depth_mask.npy
112
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_150_050.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_150_050_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_150_050_depth_mask.npy
113
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_000_depth_mask.npy
114
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_140_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_140_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_140_040_depth_mask.npy
115
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_320_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_320_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_320_010_depth_mask.npy
116
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_040_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_040_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_040_000_depth_mask.npy
117
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_040_depth_mask.npy
118
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_020_depth_mask.npy
119
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_190_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_190_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_190_030_depth_mask.npy
120
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_260_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_260_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_260_020_depth_mask.npy
121
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_020_depth_mask.npy
122
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_340_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_340_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_340_010_depth_mask.npy
123
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_020_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_020_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_020_000_depth_mask.npy
124
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_220_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_220_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_220_040_depth_mask.npy
125
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_030_depth_mask.npy
126
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_060_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_060_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_060_020_depth_mask.npy
127
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_020_depth_mask.npy
128
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_010_depth_mask.npy
129
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_170_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_170_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_170_030_depth_mask.npy
130
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_270_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_270_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_270_030_depth_mask.npy
131
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_030_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_030_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_030_010_depth_mask.npy
132
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_050.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_050_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_050_depth_mask.npy
133
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_050.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_050_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_050_depth_mask.npy
134
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_000_depth_mask.npy
135
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_050.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_050_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_050_depth_mask.npy
136
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_160_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_160_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_160_040_depth_mask.npy
137
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_020_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_020_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_020_020_depth_mask.npy
138
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_290_040_depth_mask.npy
139
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_260_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_260_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_260_040_depth_mask.npy
140
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_300_010_depth_mask.npy
141
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_220_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_220_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_220_020_depth_mask.npy
142
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_280_050.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_280_050_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_280_050_depth_mask.npy
143
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_000_depth_mask.npy
144
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_080_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_080_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_080_010_depth_mask.npy
145
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_230_030_depth_mask.npy
146
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_310_040_depth_mask.npy
147
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_280_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_280_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_280_010_depth_mask.npy
148
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_350_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_350_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_350_020_depth_mask.npy
149
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_170_050.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_170_050_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_170_050_depth_mask.npy
150
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_330_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_330_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_330_020_depth_mask.npy
151
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_070_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_070_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_070_000_depth_mask.npy
152
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_150_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_150_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_150_030_depth_mask.npy
153
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_210_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_210_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_210_010_depth_mask.npy
154
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_000_depth_mask.npy
155
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_250_030_depth_mask.npy
156
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_270_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_270_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_270_000_depth_mask.npy
157
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_040.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_040_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_180_040_depth_mask.npy
158
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_010_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_010_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_010_010_depth_mask.npy
159
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_240_020_depth_mask.npy
160
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_100_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_100_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_100_000_depth_mask.npy
161
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_000_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_000_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_000_000_depth_mask.npy
162
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_040_020.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_040_020_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_040_020_depth_mask.npy
163
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_320_030.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_320_030_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_320_030_depth_mask.npy
164
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_160_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_160_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_160_010_depth_mask.npy
165
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_000.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_000_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_200_000_depth_mask.npy
166
+ outdoor/scene_00022/scan_00197/00022_00197_outdoor_190_010.png outdoor/scene_00022/scan_00197/00022_00197_outdoor_190_010_depth.npy outdoor/scene_00022/scan_00197/00022_00197_outdoor_190_010_depth_mask.npy
167
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_180_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_180_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_180_030_depth_mask.npy
168
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_150_000.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_150_000_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_150_000_depth_mask.npy
169
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_250_040.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_250_040_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_250_040_depth_mask.npy
170
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_070_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_070_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_070_030_depth_mask.npy
171
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_050_000.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_050_000_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_050_000_depth_mask.npy
172
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_330_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_330_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_330_010_depth_mask.npy
173
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_020_depth_mask.npy
174
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_280_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_280_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_280_030_depth_mask.npy
175
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_190_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_190_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_190_020_depth_mask.npy
176
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_140_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_140_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_140_010_depth_mask.npy
177
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_000_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_000_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_000_020_depth_mask.npy
178
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_020_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_020_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_020_010_depth_mask.npy
179
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_340_000.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_340_000_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_340_000_depth_mask.npy
180
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_040_040.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_040_040_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_040_040_depth_mask.npy
181
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_260_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_260_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_260_030_depth_mask.npy
182
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_120_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_120_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_120_010_depth_mask.npy
183
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_160_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_160_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_160_030_depth_mask.npy
184
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_120_050.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_120_050_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_120_050_depth_mask.npy
185
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_210_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_210_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_210_030_depth_mask.npy
186
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_170_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_170_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_170_020_depth_mask.npy
187
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_030_000.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_030_000_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_030_000_depth_mask.npy
188
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_350_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_350_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_350_010_depth_mask.npy
189
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_250_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_250_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_250_010_depth_mask.npy
190
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_130_000.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_130_000_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_130_000_depth_mask.npy
191
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_000_000.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_000_000_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_000_000_depth_mask.npy
192
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_340_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_340_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_340_020_depth_mask.npy
193
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_020_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_020_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_020_030_depth_mask.npy
194
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_160_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_160_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_160_010_depth_mask.npy
195
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_060_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_060_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_060_010_depth_mask.npy
196
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_040_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_040_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_040_020_depth_mask.npy
197
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_050_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_050_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_050_030_depth_mask.npy
198
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_270_040.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_270_040_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_270_040_depth_mask.npy
199
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_080_040.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_080_040_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_080_040_depth_mask.npy
200
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_130_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_130_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_130_020_depth_mask.npy
201
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_180_010.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_180_010_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_180_010_depth_mask.npy
202
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_150_020.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_150_020_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_150_020_depth_mask.npy
203
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_230_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_230_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_230_030_depth_mask.npy
204
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_010_040.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_010_040_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_010_040_depth_mask.npy
205
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_040.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_040_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_040_depth_mask.npy
206
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_000.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_000_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_110_000_depth_mask.npy
207
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_070_050.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_070_050_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_070_050_depth_mask.npy
208
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_060_040.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_060_040_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_060_040_depth_mask.npy
209
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_140_030.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_140_030_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_140_030_depth_mask.npy
210
+ outdoor/scene_00022/scan_00194/00022_00194_outdoor_100_050.png outdoor/scene_00022/scan_00194/00022_00194_outdoor_100_050_depth.npy outdoor/scene_00022/scan_00194/00022_00194_outdoor_100_050_depth_mask.npy
211
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_010_depth_mask.npy
212
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_130_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_130_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_130_040_depth_mask.npy
213
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_230_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_230_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_230_000_depth_mask.npy
214
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_150_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_150_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_150_010_depth_mask.npy
215
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_180_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_180_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_180_020_depth_mask.npy
216
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_030_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_030_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_030_040_depth_mask.npy
217
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_050.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_050_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_050_depth_mask.npy
218
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_350_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_350_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_350_010_depth_mask.npy
219
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_230_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_230_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_230_040_depth_mask.npy
220
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_010_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_010_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_010_030_depth_mask.npy
221
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_340_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_340_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_340_000_depth_mask.npy
222
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_020_depth_mask.npy
223
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_040_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_040_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_040_000_depth_mask.npy
224
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_120_050.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_120_050_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_120_050_depth_mask.npy
225
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_220_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_220_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_220_010_depth_mask.npy
226
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_000_depth_mask.npy
227
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_020_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_020_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_020_000_depth_mask.npy
228
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_050.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_050_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_050_depth_mask.npy
229
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_020_depth_mask.npy
230
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_160_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_160_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_160_020_depth_mask.npy
231
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_330_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_330_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_330_010_depth_mask.npy
232
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_030_depth_mask.npy
233
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_210_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_210_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_210_020_depth_mask.npy
234
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_170_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_170_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_170_030_depth_mask.npy
235
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_150_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_150_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_150_040_depth_mask.npy
236
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_040_depth_mask.npy
237
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_240_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_240_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_240_030_depth_mask.npy
238
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_320_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_320_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_320_020_depth_mask.npy
239
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_100_050.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_100_050_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_100_050_depth_mask.npy
240
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_090_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_090_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_090_000_depth_mask.npy
241
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_060_000_depth_mask.npy
242
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_140_030_depth_mask.npy
243
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_160_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_160_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_160_000_depth_mask.npy
244
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_200_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_200_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_200_010_depth_mask.npy
245
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_190_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_190_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_190_000_depth_mask.npy
246
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_110_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_110_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_110_040_depth_mask.npy
247
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_310_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_310_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_310_000_depth_mask.npy
248
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_010_depth_mask.npy
249
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_170_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_170_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_170_010_depth_mask.npy
250
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_210_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_210_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_210_000_depth_mask.npy
251
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_050.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_050_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_070_050_depth_mask.npy
252
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_110_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_110_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_110_000_depth_mask.npy
253
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_050_030_depth_mask.npy
254
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_080_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_080_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_080_040_depth_mask.npy
255
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_030_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_030_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_030_020_depth_mask.npy
256
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_350_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_350_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_350_030_depth_mask.npy
257
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_010_010.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_010_010_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_010_010_depth_mask.npy
258
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_340_020.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_340_020_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_340_020_depth_mask.npy
259
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_000.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_000_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_000_depth_mask.npy
260
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_220_030.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_220_030_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_220_030_depth_mask.npy
261
+ outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_040.png outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_040_depth.npy outdoor/scene_00022/scan_00193/00022_00193_outdoor_000_040_depth_mask.npy
262
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_190_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_190_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_190_020_depth_mask.npy
263
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_260_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_260_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_260_020_depth_mask.npy
264
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_290_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_290_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_290_020_depth_mask.npy
265
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_080_030.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_080_030_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_080_030_depth_mask.npy
266
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_310_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_310_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_310_020_depth_mask.npy
267
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_250_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_250_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_250_010_depth_mask.npy
268
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_350_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_350_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_350_010_depth_mask.npy
269
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_070_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_070_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_070_020_depth_mask.npy
270
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_330_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_330_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_330_000_depth_mask.npy
271
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_230_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_230_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_230_000_depth_mask.npy
272
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_320_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_320_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_320_010_depth_mask.npy
273
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_220_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_220_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_220_010_depth_mask.npy
274
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_000_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_000_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_000_020_depth_mask.npy
275
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_280_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_280_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_280_000_depth_mask.npy
276
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_250_030.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_250_030_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_250_030_depth_mask.npy
277
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_080_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_080_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_080_000_depth_mask.npy
278
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_090_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_090_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_090_010_depth_mask.npy
279
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_100_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_100_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_100_000_depth_mask.npy
280
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_240_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_240_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_240_020_depth_mask.npy
281
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_340_020.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_340_020_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_340_020_depth_mask.npy
282
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_300_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_300_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_300_010_depth_mask.npy
283
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_200_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_200_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_200_010_depth_mask.npy
284
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_190_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_190_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_190_000_depth_mask.npy
285
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_260_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_260_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_260_000_depth_mask.npy
286
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_270_010.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_270_010_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_270_010_depth_mask.npy
287
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_310_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_310_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_310_000_depth_mask.npy
288
+ outdoor/scene_00023/scan_00198/00023_00198_outdoor_210_000.png outdoor/scene_00023/scan_00198/00023_00198_outdoor_210_000_depth.npy outdoor/scene_00023/scan_00198/00023_00198_outdoor_210_000_depth_mask.npy
289
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_040_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_040_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_040_010_depth_mask.npy
290
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_290_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_290_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_290_020_depth_mask.npy
291
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_340_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_340_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_340_010_depth_mask.npy
292
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_280_030.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_280_030_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_280_030_depth_mask.npy
293
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_350_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_350_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_350_000_depth_mask.npy
294
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_020_depth_mask.npy
295
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_050_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_050_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_050_000_depth_mask.npy
296
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_310_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_310_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_310_020_depth_mask.npy
297
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_130_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_130_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_130_000_depth_mask.npy
298
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_000_depth_mask.npy
299
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_330_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_330_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_330_000_depth_mask.npy
300
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_080_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_080_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_080_020_depth_mask.npy
301
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_210_030.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_210_030_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_210_030_depth_mask.npy
302
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_040.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_040_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_040_depth_mask.npy
303
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_320_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_320_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_320_010_depth_mask.npy
304
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_050.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_050_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_050_depth_mask.npy
305
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_340_040.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_340_040_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_340_040_depth_mask.npy
306
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_190_030.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_190_030_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_190_030_depth_mask.npy
307
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_120_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_120_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_120_010_depth_mask.npy
308
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_100_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_100_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_100_020_depth_mask.npy
309
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_010_depth_mask.npy
310
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_130_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_130_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_130_020_depth_mask.npy
311
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_350_030.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_350_030_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_350_030_depth_mask.npy
312
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_030_020_depth_mask.npy
313
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_080_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_080_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_080_000_depth_mask.npy
314
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_090_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_090_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_090_010_depth_mask.npy
315
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_300_040.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_300_040_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_300_040_depth_mask.npy
316
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_100_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_100_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_100_000_depth_mask.npy
317
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_030.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_030_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_020_030_depth_mask.npy
318
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_040_030.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_040_030_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_040_030_depth_mask.npy
319
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_300_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_300_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_300_010_depth_mask.npy
320
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_000_050.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_000_050_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_000_050_depth_mask.npy
321
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_290_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_290_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_290_000_depth_mask.npy
322
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_000_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_000_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_000_010_depth_mask.npy
323
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_000_depth_mask.npy
324
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_330_030.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_330_030_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_330_030_depth_mask.npy
325
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_050_020.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_050_020_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_050_020_depth_mask.npy
326
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_070_010.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_070_010_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_070_010_depth_mask.npy
327
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_310_000.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_310_000_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_310_000_depth_mask.npy
328
+ outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_040.png outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_040_depth.npy outdoor/scene_00023/scan_00200/00023_00200_outdoor_010_040_depth_mask.npy
329
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_200_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_200_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_200_000_depth_mask.npy
330
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_190_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_190_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_190_010_depth_mask.npy
331
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_340_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_340_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_340_020_depth_mask.npy
332
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_240_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_240_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_240_020_depth_mask.npy
333
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_030_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_030_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_030_020_depth_mask.npy
334
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_130_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_130_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_130_020_depth_mask.npy
335
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_150_030.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_150_030_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_150_030_depth_mask.npy
336
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_210_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_210_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_210_010_depth_mask.npy
337
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_180_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_180_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_180_000_depth_mask.npy
338
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_010_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_010_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_010_000_depth_mask.npy
339
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_110_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_110_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_110_000_depth_mask.npy
340
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_280_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_280_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_280_010_depth_mask.npy
341
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_230_030.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_230_030_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_230_030_depth_mask.npy
342
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_170_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_170_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_170_010_depth_mask.npy
343
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_220_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_220_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_220_020_depth_mask.npy
344
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_300_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_300_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_300_010_depth_mask.npy
345
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_290_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_290_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_290_000_depth_mask.npy
346
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_260_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_260_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_260_000_depth_mask.npy
347
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_230_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_230_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_230_010_depth_mask.npy
348
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_350_040.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_350_040_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_350_040_depth_mask.npy
349
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_330_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_330_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_330_010_depth_mask.npy
350
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_220_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_220_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_220_000_depth_mask.npy
351
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_140_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_140_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_140_010_depth_mask.npy
352
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_160_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_160_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_160_020_depth_mask.npy
353
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_040_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_040_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_040_010_depth_mask.npy
354
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_320_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_320_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_320_000_depth_mask.npy
355
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_260_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_260_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_260_020_depth_mask.npy
356
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_200_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_200_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_200_020_depth_mask.npy
357
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_020_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_020_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_020_010_depth_mask.npy
358
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_340_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_340_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_340_000_depth_mask.npy
359
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_000_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_000_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_000_020_depth_mask.npy
360
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_240_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_240_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_240_000_depth_mask.npy
361
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_120_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_120_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_120_010_depth_mask.npy
362
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_030_000.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_030_000_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_030_000_depth_mask.npy
363
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_350_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_350_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_350_010_depth_mask.npy
364
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_250_010.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_250_010_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_250_010_depth_mask.npy
365
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_210_030.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_210_030_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_210_030_depth_mask.npy
366
+ outdoor/scene_00023/scan_00199/00023_00199_outdoor_180_020.png outdoor/scene_00023/scan_00199/00023_00199_outdoor_180_020_depth.npy outdoor/scene_00023/scan_00199/00023_00199_outdoor_180_020_depth_mask.npy
367
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_240_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_240_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_240_020_depth_mask.npy
368
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_050.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_050_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_050_depth_mask.npy
369
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_000_depth_mask.npy
370
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_000_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_000_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_000_000_depth_mask.npy
371
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_040.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_040_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_040_depth_mask.npy
372
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_010_depth_mask.npy
373
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_220_030.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_220_030_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_220_030_depth_mask.npy
374
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_140_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_140_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_140_020_depth_mask.npy
375
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_050_030.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_050_030_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_050_030_depth_mask.npy
376
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_050.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_050_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_050_depth_mask.npy
377
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_000_depth_mask.npy
378
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_150_030.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_150_030_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_150_030_depth_mask.npy
379
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_040.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_040_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_040_depth_mask.npy
380
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_010_depth_mask.npy
381
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_010_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_010_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_010_010_depth_mask.npy
382
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_070_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_070_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_070_010_depth_mask.npy
383
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_170_050.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_170_050_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_170_050_depth_mask.npy
384
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_120_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_120_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_120_020_depth_mask.npy
385
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_060_040.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_060_040_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_060_040_depth_mask.npy
386
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_160_040.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_160_040_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_160_040_depth_mask.npy
387
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_060_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_060_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_060_000_depth_mask.npy
388
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_190_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_190_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_190_000_depth_mask.npy
389
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_330_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_330_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_330_010_depth_mask.npy
390
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_070_030.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_070_030_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_070_030_depth_mask.npy
391
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_230_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_230_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_230_010_depth_mask.npy
392
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_180_030.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_180_030_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_180_030_depth_mask.npy
393
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_210_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_210_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_210_020_depth_mask.npy
394
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_130_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_130_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_130_010_depth_mask.npy
395
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_120_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_120_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_120_000_depth_mask.npy
396
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_140_050.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_140_050_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_140_050_depth_mask.npy
397
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_320_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_320_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_320_000_depth_mask.npy
398
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_190_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_190_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_190_020_depth_mask.npy
399
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_240_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_240_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_240_000_depth_mask.npy
400
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_100_020_depth_mask.npy
401
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_340_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_340_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_340_000_depth_mask.npy
402
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_000_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_000_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_000_020_depth_mask.npy
403
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_030.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_030_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_090_030_depth_mask.npy
404
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_130_040.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_130_040_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_130_040_depth_mask.npy
405
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_080_020_depth_mask.npy
406
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_170_020.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_170_020_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_170_020_depth_mask.npy
407
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_030.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_030_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_110_030_depth_mask.npy
408
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_030_000.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_030_000_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_030_000_depth_mask.npy
409
+ outdoor/scene_00024/scan_00201/00024_00201_outdoor_350_010.png outdoor/scene_00024/scan_00201/00024_00201_outdoor_350_010_depth.npy outdoor/scene_00024/scan_00201/00024_00201_outdoor_350_010_depth_mask.npy
410
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_340_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_340_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_340_030_depth_mask.npy
411
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_220_020.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_220_020_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_220_020_depth_mask.npy
412
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_140_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_140_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_140_030_depth_mask.npy
413
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_200_010.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_200_010_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_200_010_depth_mask.npy
414
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_190_000.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_190_000_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_190_000_depth_mask.npy
415
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_110_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_110_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_110_040_depth_mask.npy
416
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_070_010.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_070_010_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_070_010_depth_mask.npy
417
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_150_020.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_150_020_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_150_020_depth_mask.npy
418
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_210_000.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_210_000_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_210_000_depth_mask.npy
419
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_180_010.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_180_010_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_180_010_depth_mask.npy
420
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_310_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_310_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_310_040_depth_mask.npy
421
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_000.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_000_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_000_depth_mask.npy
422
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_130_020.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_130_020_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_130_020_depth_mask.npy
423
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_040_depth_mask.npy
424
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_120_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_120_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_120_030_depth_mask.npy
425
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_100_000.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_100_000_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_100_000_depth_mask.npy
426
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_200_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_200_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_200_040_depth_mask.npy
427
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_320_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_320_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_320_030_depth_mask.npy
428
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_160_010.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_160_010_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_160_010_depth_mask.npy
429
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_130_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_130_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_130_040_depth_mask.npy
430
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_020.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_020_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_170_020_depth_mask.npy
431
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_210_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_210_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_210_030_depth_mask.npy
432
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_330_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_330_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_330_040_depth_mask.npy
433
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_140_000.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_140_000_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_140_000_depth_mask.npy
434
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_160_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_160_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_160_030_depth_mask.npy
435
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_120_000.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_120_000_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_120_000_depth_mask.npy
436
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_100_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_100_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_100_030_depth_mask.npy
437
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_000_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_000_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_000_030_depth_mask.npy
438
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_220_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_220_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_220_040_depth_mask.npy
439
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_090_020.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_090_020_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_090_020_depth_mask.npy
440
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_300_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_300_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_300_030_depth_mask.npy
441
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_190_020.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_190_020_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_190_020_depth_mask.npy
442
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_080_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_080_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_080_030_depth_mask.npy
443
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_230_010.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_230_010_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_230_010_depth_mask.npy
444
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_180_030.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_180_030_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_180_030_depth_mask.npy
445
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_110_020.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_110_020_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_110_020_depth_mask.npy
446
+ outdoor/scene_00024/scan_00202/00024_00202_outdoor_150_040.png outdoor/scene_00024/scan_00202/00024_00202_outdoor_150_040_depth.npy outdoor/scene_00024/scan_00202/00024_00202_outdoor_150_040_depth_mask.npy
Lotus-2/datasets/eval/depth/data_split/eth3d/eth3d_filename_list.txt ADDED
@@ -0,0 +1,454 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ rgb/office/images/dslr_images/DSC_0219.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0219.JPG
2
+ rgb/office/images/dslr_images/DSC_0220.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0220.JPG
3
+ rgb/office/images/dslr_images/DSC_0221.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0221.JPG
4
+ rgb/office/images/dslr_images/DSC_0222.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0222.JPG
5
+ rgb/office/images/dslr_images/DSC_0223.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0223.JPG
6
+ rgb/office/images/dslr_images/DSC_0228.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0228.JPG
7
+ rgb/office/images/dslr_images/DSC_0229.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0229.JPG
8
+ rgb/office/images/dslr_images/DSC_0230.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0230.JPG
9
+ rgb/office/images/dslr_images/DSC_0231.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0231.JPG
10
+ rgb/office/images/dslr_images/DSC_0235.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0235.JPG
11
+ rgb/office/images/dslr_images/DSC_0236.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0236.JPG
12
+ rgb/office/images/dslr_images/DSC_0237.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0237.JPG
13
+ rgb/office/images/dslr_images/DSC_0238.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0238.JPG
14
+ rgb/office/images/dslr_images/DSC_0239.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0239.JPG
15
+ rgb/office/images/dslr_images/DSC_0240.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0240.JPG
16
+ rgb/office/images/dslr_images/DSC_0241.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0241.JPG
17
+ rgb/office/images/dslr_images/DSC_0242.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0242.JPG
18
+ rgb/office/images/dslr_images/DSC_0243.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0243.JPG
19
+ rgb/office/images/dslr_images/DSC_0248.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0248.JPG
20
+ rgb/office/images/dslr_images/DSC_0249.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0249.JPG
21
+ rgb/office/images/dslr_images/DSC_0250.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0250.JPG
22
+ rgb/office/images/dslr_images/DSC_0251.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0251.JPG
23
+ rgb/office/images/dslr_images/DSC_0252.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0252.JPG
24
+ rgb/office/images/dslr_images/DSC_0253.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0253.JPG
25
+ rgb/office/images/dslr_images/DSC_0254.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0254.JPG
26
+ rgb/office/images/dslr_images/DSC_0255.JPG depth/office_dslr_depth/office/ground_truth_depth/dslr_images/DSC_0255.JPG
27
+ rgb/terrace/images/dslr_images/DSC_0259.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0259.JPG
28
+ rgb/terrace/images/dslr_images/DSC_0260.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0260.JPG
29
+ rgb/terrace/images/dslr_images/DSC_0261.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0261.JPG
30
+ rgb/terrace/images/dslr_images/DSC_0262.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0262.JPG
31
+ rgb/terrace/images/dslr_images/DSC_0263.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0263.JPG
32
+ rgb/terrace/images/dslr_images/DSC_0264.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0264.JPG
33
+ rgb/terrace/images/dslr_images/DSC_0266.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0266.JPG
34
+ rgb/terrace/images/dslr_images/DSC_0267.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0267.JPG
35
+ rgb/terrace/images/dslr_images/DSC_0268.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0268.JPG
36
+ rgb/terrace/images/dslr_images/DSC_0269.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0269.JPG
37
+ rgb/terrace/images/dslr_images/DSC_0270.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0270.JPG
38
+ rgb/terrace/images/dslr_images/DSC_0271.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0271.JPG
39
+ rgb/terrace/images/dslr_images/DSC_0272.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0272.JPG
40
+ rgb/terrace/images/dslr_images/DSC_0273.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0273.JPG
41
+ rgb/terrace/images/dslr_images/DSC_0274.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0274.JPG
42
+ rgb/terrace/images/dslr_images/DSC_0275.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0275.JPG
43
+ rgb/terrace/images/dslr_images/DSC_0276.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0276.JPG
44
+ rgb/terrace/images/dslr_images/DSC_0277.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0277.JPG
45
+ rgb/terrace/images/dslr_images/DSC_0278.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0278.JPG
46
+ rgb/terrace/images/dslr_images/DSC_0279.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0279.JPG
47
+ rgb/terrace/images/dslr_images/DSC_0283.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0283.JPG
48
+ rgb/terrace/images/dslr_images/DSC_0284.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0284.JPG
49
+ rgb/terrace/images/dslr_images/DSC_0285.JPG depth/terrace_dslr_depth/terrace/ground_truth_depth/dslr_images/DSC_0285.JPG
50
+ rgb/courtyard/images/dslr_images/DSC_0286.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0286.JPG
51
+ rgb/courtyard/images/dslr_images/DSC_0287.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0287.JPG
52
+ rgb/courtyard/images/dslr_images/DSC_0288.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0288.JPG
53
+ rgb/courtyard/images/dslr_images/DSC_0289.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0289.JPG
54
+ rgb/courtyard/images/dslr_images/DSC_0290.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0290.JPG
55
+ rgb/courtyard/images/dslr_images/DSC_0291.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0291.JPG
56
+ rgb/courtyard/images/dslr_images/DSC_0292.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0292.JPG
57
+ rgb/courtyard/images/dslr_images/DSC_0293.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0293.JPG
58
+ rgb/courtyard/images/dslr_images/DSC_0294.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0294.JPG
59
+ rgb/courtyard/images/dslr_images/DSC_0295.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0295.JPG
60
+ rgb/courtyard/images/dslr_images/DSC_0296.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0296.JPG
61
+ rgb/courtyard/images/dslr_images/DSC_0297.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0297.JPG
62
+ rgb/courtyard/images/dslr_images/DSC_0298.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0298.JPG
63
+ rgb/courtyard/images/dslr_images/DSC_0299.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0299.JPG
64
+ rgb/courtyard/images/dslr_images/DSC_0300.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0300.JPG
65
+ rgb/courtyard/images/dslr_images/DSC_0301.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0301.JPG
66
+ rgb/courtyard/images/dslr_images/DSC_0302.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0302.JPG
67
+ rgb/courtyard/images/dslr_images/DSC_0303.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0303.JPG
68
+ rgb/courtyard/images/dslr_images/DSC_0304.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0304.JPG
69
+ rgb/courtyard/images/dslr_images/DSC_0305.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0305.JPG
70
+ rgb/courtyard/images/dslr_images/DSC_0306.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0306.JPG
71
+ rgb/courtyard/images/dslr_images/DSC_0307.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0307.JPG
72
+ rgb/courtyard/images/dslr_images/DSC_0308.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0308.JPG
73
+ rgb/courtyard/images/dslr_images/DSC_0309.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0309.JPG
74
+ rgb/courtyard/images/dslr_images/DSC_0310.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0310.JPG
75
+ rgb/courtyard/images/dslr_images/DSC_0311.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0311.JPG
76
+ rgb/courtyard/images/dslr_images/DSC_0312.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0312.JPG
77
+ rgb/courtyard/images/dslr_images/DSC_0313.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0313.JPG
78
+ rgb/courtyard/images/dslr_images/DSC_0314.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0314.JPG
79
+ rgb/courtyard/images/dslr_images/DSC_0315.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0315.JPG
80
+ rgb/courtyard/images/dslr_images/DSC_0316.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0316.JPG
81
+ rgb/courtyard/images/dslr_images/DSC_0317.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0317.JPG
82
+ rgb/courtyard/images/dslr_images/DSC_0318.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0318.JPG
83
+ rgb/courtyard/images/dslr_images/DSC_0319.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0319.JPG
84
+ rgb/courtyard/images/dslr_images/DSC_0320.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0320.JPG
85
+ rgb/courtyard/images/dslr_images/DSC_0321.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0321.JPG
86
+ rgb/courtyard/images/dslr_images/DSC_0322.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0322.JPG
87
+ rgb/courtyard/images/dslr_images/DSC_0323.JPG depth/courtyard_dslr_depth/courtyard/ground_truth_depth/dslr_images/DSC_0323.JPG
88
+ rgb/facade/images/dslr_images/DSC_0324.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0324.JPG
89
+ rgb/facade/images/dslr_images/DSC_0325.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0325.JPG
90
+ rgb/facade/images/dslr_images/DSC_0326.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0326.JPG
91
+ rgb/facade/images/dslr_images/DSC_0327.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0327.JPG
92
+ rgb/facade/images/dslr_images/DSC_0328.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0328.JPG
93
+ rgb/facade/images/dslr_images/DSC_0329.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0329.JPG
94
+ rgb/facade/images/dslr_images/DSC_0330.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0330.JPG
95
+ rgb/facade/images/dslr_images/DSC_0331.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0331.JPG
96
+ rgb/facade/images/dslr_images/DSC_0332.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0332.JPG
97
+ rgb/facade/images/dslr_images/DSC_0333.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0333.JPG
98
+ rgb/facade/images/dslr_images/DSC_0334.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0334.JPG
99
+ rgb/facade/images/dslr_images/DSC_0335.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0335.JPG
100
+ rgb/facade/images/dslr_images/DSC_0336.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0336.JPG
101
+ rgb/facade/images/dslr_images/DSC_0337.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0337.JPG
102
+ rgb/facade/images/dslr_images/DSC_0338.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0338.JPG
103
+ rgb/facade/images/dslr_images/DSC_0339.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0339.JPG
104
+ rgb/facade/images/dslr_images/DSC_0340.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0340.JPG
105
+ rgb/facade/images/dslr_images/DSC_0341.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0341.JPG
106
+ rgb/facade/images/dslr_images/DSC_0342.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0342.JPG
107
+ rgb/facade/images/dslr_images/DSC_0343.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0343.JPG
108
+ rgb/facade/images/dslr_images/DSC_0344.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0344.JPG
109
+ rgb/facade/images/dslr_images/DSC_0345.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0345.JPG
110
+ rgb/facade/images/dslr_images/DSC_0346.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0346.JPG
111
+ rgb/facade/images/dslr_images/DSC_0347.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0347.JPG
112
+ rgb/facade/images/dslr_images/DSC_0348.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0348.JPG
113
+ rgb/facade/images/dslr_images/DSC_0349.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0349.JPG
114
+ rgb/facade/images/dslr_images/DSC_0350.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0350.JPG
115
+ rgb/facade/images/dslr_images/DSC_0351.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0351.JPG
116
+ rgb/facade/images/dslr_images/DSC_0352.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0352.JPG
117
+ rgb/facade/images/dslr_images/DSC_0353.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0353.JPG
118
+ rgb/facade/images/dslr_images/DSC_0354.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0354.JPG
119
+ rgb/facade/images/dslr_images/DSC_0355.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0355.JPG
120
+ rgb/facade/images/dslr_images/DSC_0356.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0356.JPG
121
+ rgb/facade/images/dslr_images/DSC_0357.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0357.JPG
122
+ rgb/facade/images/dslr_images/DSC_0358.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0358.JPG
123
+ rgb/facade/images/dslr_images/DSC_0359.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0359.JPG
124
+ rgb/facade/images/dslr_images/DSC_0360.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0360.JPG
125
+ rgb/facade/images/dslr_images/DSC_0361.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0361.JPG
126
+ rgb/facade/images/dslr_images/DSC_0362.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0362.JPG
127
+ rgb/facade/images/dslr_images/DSC_0363.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0363.JPG
128
+ rgb/facade/images/dslr_images/DSC_0364.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0364.JPG
129
+ rgb/facade/images/dslr_images/DSC_0365.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0365.JPG
130
+ rgb/facade/images/dslr_images/DSC_0366.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0366.JPG
131
+ rgb/facade/images/dslr_images/DSC_0386.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0386.JPG
132
+ rgb/facade/images/dslr_images/DSC_0387.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0387.JPG
133
+ rgb/facade/images/dslr_images/DSC_0388.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0388.JPG
134
+ rgb/facade/images/dslr_images/DSC_0389.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0389.JPG
135
+ rgb/facade/images/dslr_images/DSC_0390.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0390.JPG
136
+ rgb/facade/images/dslr_images/DSC_0391.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0391.JPG
137
+ rgb/facade/images/dslr_images/DSC_0392.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0392.JPG
138
+ rgb/facade/images/dslr_images/DSC_0393.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0393.JPG
139
+ rgb/facade/images/dslr_images/DSC_0394.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0394.JPG
140
+ rgb/facade/images/dslr_images/DSC_0395.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0395.JPG
141
+ rgb/facade/images/dslr_images/DSC_0396.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0396.JPG
142
+ rgb/facade/images/dslr_images/DSC_0397.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0397.JPG
143
+ rgb/facade/images/dslr_images/DSC_0398.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0398.JPG
144
+ rgb/facade/images/dslr_images/DSC_0399.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0399.JPG
145
+ rgb/facade/images/dslr_images/DSC_0400.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0400.JPG
146
+ rgb/facade/images/dslr_images/DSC_0401.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0401.JPG
147
+ rgb/facade/images/dslr_images/DSC_0402.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0402.JPG
148
+ rgb/facade/images/dslr_images/DSC_0404.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0404.JPG
149
+ rgb/facade/images/dslr_images/DSC_0405.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0405.JPG
150
+ rgb/facade/images/dslr_images/DSC_0406.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0406.JPG
151
+ rgb/facade/images/dslr_images/DSC_0407.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0407.JPG
152
+ rgb/facade/images/dslr_images/DSC_0408.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0408.JPG
153
+ rgb/facade/images/dslr_images/DSC_0409.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0409.JPG
154
+ rgb/facade/images/dslr_images/DSC_0410.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0410.JPG
155
+ rgb/facade/images/dslr_images/DSC_0411.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0411.JPG
156
+ rgb/facade/images/dslr_images/DSC_0412.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0412.JPG
157
+ rgb/facade/images/dslr_images/DSC_0413.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0413.JPG
158
+ rgb/facade/images/dslr_images/DSC_0414.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0414.JPG
159
+ rgb/facade/images/dslr_images/DSC_0415.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0415.JPG
160
+ rgb/facade/images/dslr_images/DSC_0419.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0419.JPG
161
+ rgb/facade/images/dslr_images/DSC_0420.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0420.JPG
162
+ rgb/facade/images/dslr_images/DSC_0421.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0421.JPG
163
+ rgb/facade/images/dslr_images/DSC_0422.JPG depth/facade_dslr_depth/facade/ground_truth_depth/dslr_images/DSC_0422.JPG
164
+ rgb/relief/images/dslr_images/DSC_0427.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0427.JPG
165
+ rgb/relief/images/dslr_images/DSC_0428.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0428.JPG
166
+ rgb/relief/images/dslr_images/DSC_0429.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0429.JPG
167
+ rgb/relief/images/dslr_images/DSC_0430.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0430.JPG
168
+ rgb/relief/images/dslr_images/DSC_0431.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0431.JPG
169
+ rgb/relief/images/dslr_images/DSC_0432.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0432.JPG
170
+ rgb/relief/images/dslr_images/DSC_0433.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0433.JPG
171
+ rgb/relief/images/dslr_images/DSC_0434.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0434.JPG
172
+ rgb/relief/images/dslr_images/DSC_0435.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0435.JPG
173
+ rgb/relief/images/dslr_images/DSC_0436.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0436.JPG
174
+ rgb/relief/images/dslr_images/DSC_0437.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0437.JPG
175
+ rgb/relief/images/dslr_images/DSC_0438.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0438.JPG
176
+ rgb/relief/images/dslr_images/DSC_0439.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0439.JPG
177
+ rgb/relief/images/dslr_images/DSC_0440.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0440.JPG
178
+ rgb/relief/images/dslr_images/DSC_0441.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0441.JPG
179
+ rgb/relief/images/dslr_images/DSC_0442.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0442.JPG
180
+ rgb/relief/images/dslr_images/DSC_0443.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0443.JPG
181
+ rgb/relief/images/dslr_images/DSC_0444.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0444.JPG
182
+ rgb/relief/images/dslr_images/DSC_0445.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0445.JPG
183
+ rgb/relief/images/dslr_images/DSC_0446.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0446.JPG
184
+ rgb/relief/images/dslr_images/DSC_0447.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0447.JPG
185
+ rgb/relief/images/dslr_images/DSC_0448.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0448.JPG
186
+ rgb/relief/images/dslr_images/DSC_0449.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0449.JPG
187
+ rgb/relief/images/dslr_images/DSC_0450.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0450.JPG
188
+ rgb/relief/images/dslr_images/DSC_0451.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0451.JPG
189
+ rgb/relief/images/dslr_images/DSC_0452.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0452.JPG
190
+ rgb/relief/images/dslr_images/DSC_0453.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0453.JPG
191
+ rgb/relief/images/dslr_images/DSC_0454.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0454.JPG
192
+ rgb/relief/images/dslr_images/DSC_0455.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0455.JPG
193
+ rgb/relief/images/dslr_images/DSC_0456.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0456.JPG
194
+ rgb/relief/images/dslr_images/DSC_0457.JPG depth/relief_dslr_depth/relief/ground_truth_depth/dslr_images/DSC_0457.JPG
195
+ rgb/relief_2/images/dslr_images/DSC_0458.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0458.JPG
196
+ rgb/relief_2/images/dslr_images/DSC_0459.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0459.JPG
197
+ rgb/relief_2/images/dslr_images/DSC_0460.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0460.JPG
198
+ rgb/relief_2/images/dslr_images/DSC_0461.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0461.JPG
199
+ rgb/relief_2/images/dslr_images/DSC_0462.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0462.JPG
200
+ rgb/relief_2/images/dslr_images/DSC_0463.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0463.JPG
201
+ rgb/relief_2/images/dslr_images/DSC_0464.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0464.JPG
202
+ rgb/relief_2/images/dslr_images/DSC_0465.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0465.JPG
203
+ rgb/relief_2/images/dslr_images/DSC_0466.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0466.JPG
204
+ rgb/relief_2/images/dslr_images/DSC_0467.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0467.JPG
205
+ rgb/relief_2/images/dslr_images/DSC_0468.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0468.JPG
206
+ rgb/relief_2/images/dslr_images/DSC_0469.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0469.JPG
207
+ rgb/relief_2/images/dslr_images/DSC_0470.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0470.JPG
208
+ rgb/relief_2/images/dslr_images/DSC_0471.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0471.JPG
209
+ rgb/relief_2/images/dslr_images/DSC_0472.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0472.JPG
210
+ rgb/relief_2/images/dslr_images/DSC_0473.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0473.JPG
211
+ rgb/relief_2/images/dslr_images/DSC_0474.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0474.JPG
212
+ rgb/relief_2/images/dslr_images/DSC_0475.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0475.JPG
213
+ rgb/relief_2/images/dslr_images/DSC_0476.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0476.JPG
214
+ rgb/relief_2/images/dslr_images/DSC_0477.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0477.JPG
215
+ rgb/relief_2/images/dslr_images/DSC_0478.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0478.JPG
216
+ rgb/relief_2/images/dslr_images/DSC_0480.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0480.JPG
217
+ rgb/relief_2/images/dslr_images/DSC_0481.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0481.JPG
218
+ rgb/relief_2/images/dslr_images/DSC_0482.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0482.JPG
219
+ rgb/relief_2/images/dslr_images/DSC_0483.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0483.JPG
220
+ rgb/relief_2/images/dslr_images/DSC_0484.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0484.JPG
221
+ rgb/relief_2/images/dslr_images/DSC_0485.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0485.JPG
222
+ rgb/relief_2/images/dslr_images/DSC_0486.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0486.JPG
223
+ rgb/relief_2/images/dslr_images/DSC_0487.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0487.JPG
224
+ rgb/relief_2/images/dslr_images/DSC_0488.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0488.JPG
225
+ rgb/relief_2/images/dslr_images/DSC_0489.JPG depth/relief_2_dslr_depth/relief_2/ground_truth_depth/dslr_images/DSC_0489.JPG
226
+ rgb/playground/images/dslr_images/DSC_0567.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0567.JPG
227
+ rgb/playground/images/dslr_images/DSC_0568.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0568.JPG
228
+ rgb/playground/images/dslr_images/DSC_0569.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0569.JPG
229
+ rgb/playground/images/dslr_images/DSC_0570.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0570.JPG
230
+ rgb/playground/images/dslr_images/DSC_0571.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0571.JPG
231
+ rgb/playground/images/dslr_images/DSC_0572.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0572.JPG
232
+ rgb/playground/images/dslr_images/DSC_0573.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0573.JPG
233
+ rgb/playground/images/dslr_images/DSC_0574.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0574.JPG
234
+ rgb/playground/images/dslr_images/DSC_0575.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0575.JPG
235
+ rgb/playground/images/dslr_images/DSC_0576.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0576.JPG
236
+ rgb/playground/images/dslr_images/DSC_0577.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0577.JPG
237
+ rgb/playground/images/dslr_images/DSC_0578.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0578.JPG
238
+ rgb/playground/images/dslr_images/DSC_0579.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0579.JPG
239
+ rgb/playground/images/dslr_images/DSC_0580.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0580.JPG
240
+ rgb/playground/images/dslr_images/DSC_0581.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0581.JPG
241
+ rgb/playground/images/dslr_images/DSC_0582.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0582.JPG
242
+ rgb/playground/images/dslr_images/DSC_0583.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0583.JPG
243
+ rgb/playground/images/dslr_images/DSC_0584.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0584.JPG
244
+ rgb/playground/images/dslr_images/DSC_0585.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0585.JPG
245
+ rgb/playground/images/dslr_images/DSC_0586.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0586.JPG
246
+ rgb/playground/images/dslr_images/DSC_0587.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0587.JPG
247
+ rgb/playground/images/dslr_images/DSC_0588.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0588.JPG
248
+ rgb/playground/images/dslr_images/DSC_0589.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0589.JPG
249
+ rgb/playground/images/dslr_images/DSC_0590.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0590.JPG
250
+ rgb/playground/images/dslr_images/DSC_0591.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0591.JPG
251
+ rgb/playground/images/dslr_images/DSC_0592.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0592.JPG
252
+ rgb/playground/images/dslr_images/DSC_0593.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0593.JPG
253
+ rgb/playground/images/dslr_images/DSC_0594.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0594.JPG
254
+ rgb/playground/images/dslr_images/DSC_0595.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0595.JPG
255
+ rgb/playground/images/dslr_images/DSC_0596.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0596.JPG
256
+ rgb/playground/images/dslr_images/DSC_0597.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0597.JPG
257
+ rgb/playground/images/dslr_images/DSC_0598.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0598.JPG
258
+ rgb/playground/images/dslr_images/DSC_0599.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0599.JPG
259
+ rgb/playground/images/dslr_images/DSC_0602.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0602.JPG
260
+ rgb/playground/images/dslr_images/DSC_0603.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0603.JPG
261
+ rgb/playground/images/dslr_images/DSC_0604.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0604.JPG
262
+ rgb/playground/images/dslr_images/DSC_0605.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0605.JPG
263
+ rgb/playground/images/dslr_images/DSC_0606.JPG depth/playground_dslr_depth/playground/ground_truth_depth/dslr_images/DSC_0606.JPG
264
+ rgb/terrains/images/dslr_images/DSC_0614.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0614.JPG
265
+ rgb/terrains/images/dslr_images/DSC_0615.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0615.JPG
266
+ rgb/terrains/images/dslr_images/DSC_0616.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0616.JPG
267
+ rgb/terrains/images/dslr_images/DSC_0617.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0617.JPG
268
+ rgb/terrains/images/dslr_images/DSC_0618.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0618.JPG
269
+ rgb/terrains/images/dslr_images/DSC_0619.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0619.JPG
270
+ rgb/terrains/images/dslr_images/DSC_0620.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0620.JPG
271
+ rgb/terrains/images/dslr_images/DSC_0622.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0622.JPG
272
+ rgb/terrains/images/dslr_images/DSC_0623.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0623.JPG
273
+ rgb/terrains/images/dslr_images/DSC_0624.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0624.JPG
274
+ rgb/terrains/images/dslr_images/DSC_0625.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0625.JPG
275
+ rgb/terrains/images/dslr_images/DSC_0626.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0626.JPG
276
+ rgb/terrains/images/dslr_images/DSC_0627.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0627.JPG
277
+ rgb/terrains/images/dslr_images/DSC_0628.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0628.JPG
278
+ rgb/terrains/images/dslr_images/DSC_0629.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0629.JPG
279
+ rgb/terrains/images/dslr_images/DSC_0630.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0630.JPG
280
+ rgb/terrains/images/dslr_images/DSC_0631.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0631.JPG
281
+ rgb/terrains/images/dslr_images/DSC_0632.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0632.JPG
282
+ rgb/pipes/images/dslr_images/DSC_0634.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0634.JPG
283
+ rgb/pipes/images/dslr_images/DSC_0635.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0635.JPG
284
+ rgb/pipes/images/dslr_images/DSC_0636.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0636.JPG
285
+ rgb/pipes/images/dslr_images/DSC_0637.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0637.JPG
286
+ rgb/pipes/images/dslr_images/DSC_0638.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0638.JPG
287
+ rgb/pipes/images/dslr_images/DSC_0639.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0639.JPG
288
+ rgb/pipes/images/dslr_images/DSC_0640.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0640.JPG
289
+ rgb/pipes/images/dslr_images/DSC_0641.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0641.JPG
290
+ rgb/pipes/images/dslr_images/DSC_0642.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0642.JPG
291
+ rgb/pipes/images/dslr_images/DSC_0643.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0643.JPG
292
+ rgb/pipes/images/dslr_images/DSC_0644.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0644.JPG
293
+ rgb/pipes/images/dslr_images/DSC_0645.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0645.JPG
294
+ rgb/pipes/images/dslr_images/DSC_0646.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0646.JPG
295
+ rgb/pipes/images/dslr_images/DSC_0647.JPG depth/pipes_dslr_depth/pipes/ground_truth_depth/dslr_images/DSC_0647.JPG
296
+ rgb/terrains/images/dslr_images/DSC_0648.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0648.JPG
297
+ rgb/terrains/images/dslr_images/DSC_0649.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0649.JPG
298
+ rgb/terrains/images/dslr_images/DSC_0650.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0650.JPG
299
+ rgb/terrains/images/dslr_images/DSC_0651.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0651.JPG
300
+ rgb/terrains/images/dslr_images/DSC_0652.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0652.JPG
301
+ rgb/terrains/images/dslr_images/DSC_0653.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0653.JPG
302
+ rgb/terrains/images/dslr_images/DSC_0654.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0654.JPG
303
+ rgb/terrains/images/dslr_images/DSC_0655.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0655.JPG
304
+ rgb/terrains/images/dslr_images/DSC_0656.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0656.JPG
305
+ rgb/terrains/images/dslr_images/DSC_0657.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0657.JPG
306
+ rgb/terrains/images/dslr_images/DSC_0658.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0658.JPG
307
+ rgb/terrains/images/dslr_images/DSC_0659.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0659.JPG
308
+ rgb/terrains/images/dslr_images/DSC_0660.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0660.JPG
309
+ rgb/terrains/images/dslr_images/DSC_0661.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0661.JPG
310
+ rgb/terrains/images/dslr_images/DSC_0662.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0662.JPG
311
+ rgb/terrains/images/dslr_images/DSC_0663.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0663.JPG
312
+ rgb/terrains/images/dslr_images/DSC_0664.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0664.JPG
313
+ rgb/terrains/images/dslr_images/DSC_0665.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0665.JPG
314
+ rgb/terrains/images/dslr_images/DSC_0666.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0666.JPG
315
+ rgb/terrains/images/dslr_images/DSC_0667.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0667.JPG
316
+ rgb/terrains/images/dslr_images/DSC_0668.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0668.JPG
317
+ rgb/terrains/images/dslr_images/DSC_0669.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0669.JPG
318
+ rgb/terrains/images/dslr_images/DSC_0670.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0670.JPG
319
+ rgb/terrains/images/dslr_images/DSC_0671.JPG depth/terrains_dslr_depth/terrains/ground_truth_depth/dslr_images/DSC_0671.JPG
320
+ rgb/delivery_area/images/dslr_images/DSC_0675.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0675.JPG
321
+ rgb/delivery_area/images/dslr_images/DSC_0676.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0676.JPG
322
+ rgb/delivery_area/images/dslr_images/DSC_0677.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0677.JPG
323
+ rgb/delivery_area/images/dslr_images/DSC_0678.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0678.JPG
324
+ rgb/delivery_area/images/dslr_images/DSC_0679.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0679.JPG
325
+ rgb/delivery_area/images/dslr_images/DSC_0680.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0680.JPG
326
+ rgb/delivery_area/images/dslr_images/DSC_0681.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0681.JPG
327
+ rgb/delivery_area/images/dslr_images/DSC_0682.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0682.JPG
328
+ rgb/delivery_area/images/dslr_images/DSC_0683.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0683.JPG
329
+ rgb/delivery_area/images/dslr_images/DSC_0684.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0684.JPG
330
+ rgb/delivery_area/images/dslr_images/DSC_0685.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0685.JPG
331
+ rgb/delivery_area/images/dslr_images/DSC_0686.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0686.JPG
332
+ rgb/delivery_area/images/dslr_images/DSC_0687.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0687.JPG
333
+ rgb/delivery_area/images/dslr_images/DSC_0688.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0688.JPG
334
+ rgb/delivery_area/images/dslr_images/DSC_0689.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0689.JPG
335
+ rgb/delivery_area/images/dslr_images/DSC_0690.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0690.JPG
336
+ rgb/delivery_area/images/dslr_images/DSC_0691.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0691.JPG
337
+ rgb/delivery_area/images/dslr_images/DSC_0692.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0692.JPG
338
+ rgb/delivery_area/images/dslr_images/DSC_0693.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0693.JPG
339
+ rgb/delivery_area/images/dslr_images/DSC_0694.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0694.JPG
340
+ rgb/delivery_area/images/dslr_images/DSC_0695.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0695.JPG
341
+ rgb/delivery_area/images/dslr_images/DSC_0696.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0696.JPG
342
+ rgb/delivery_area/images/dslr_images/DSC_0697.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0697.JPG
343
+ rgb/delivery_area/images/dslr_images/DSC_0698.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0698.JPG
344
+ rgb/delivery_area/images/dslr_images/DSC_0699.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0699.JPG
345
+ rgb/delivery_area/images/dslr_images/DSC_0700.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0700.JPG
346
+ rgb/delivery_area/images/dslr_images/DSC_0701.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0701.JPG
347
+ rgb/delivery_area/images/dslr_images/DSC_0702.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0702.JPG
348
+ rgb/delivery_area/images/dslr_images/DSC_0703.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0703.JPG
349
+ rgb/delivery_area/images/dslr_images/DSC_0704.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0704.JPG
350
+ rgb/delivery_area/images/dslr_images/DSC_0705.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0705.JPG
351
+ rgb/delivery_area/images/dslr_images/DSC_0706.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0706.JPG
352
+ rgb/delivery_area/images/dslr_images/DSC_0707.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0707.JPG
353
+ rgb/delivery_area/images/dslr_images/DSC_0708.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0708.JPG
354
+ rgb/delivery_area/images/dslr_images/DSC_0709.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0709.JPG
355
+ rgb/delivery_area/images/dslr_images/DSC_0710.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0710.JPG
356
+ rgb/delivery_area/images/dslr_images/DSC_0711.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0711.JPG
357
+ rgb/delivery_area/images/dslr_images/DSC_0712.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0712.JPG
358
+ rgb/delivery_area/images/dslr_images/DSC_0713.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0713.JPG
359
+ rgb/delivery_area/images/dslr_images/DSC_0714.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0714.JPG
360
+ rgb/delivery_area/images/dslr_images/DSC_0715.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0715.JPG
361
+ rgb/delivery_area/images/dslr_images/DSC_0716.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0716.JPG
362
+ rgb/delivery_area/images/dslr_images/DSC_0717.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0717.JPG
363
+ rgb/delivery_area/images/dslr_images/DSC_0718.JPG depth/delivery_area_dslr_depth/delivery_area/ground_truth_depth/dslr_images/DSC_0718.JPG
364
+ rgb/kicker/images/dslr_images/DSC_6487.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6487.JPG
365
+ rgb/kicker/images/dslr_images/DSC_6489.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6489.JPG
366
+ rgb/kicker/images/dslr_images/DSC_6490.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6490.JPG
367
+ rgb/kicker/images/dslr_images/DSC_6491.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6491.JPG
368
+ rgb/kicker/images/dslr_images/DSC_6492.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6492.JPG
369
+ rgb/kicker/images/dslr_images/DSC_6493.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6493.JPG
370
+ rgb/kicker/images/dslr_images/DSC_6494.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6494.JPG
371
+ rgb/kicker/images/dslr_images/DSC_6495.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6495.JPG
372
+ rgb/kicker/images/dslr_images/DSC_6496.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6496.JPG
373
+ rgb/kicker/images/dslr_images/DSC_6497.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6497.JPG
374
+ rgb/kicker/images/dslr_images/DSC_6499.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6499.JPG
375
+ rgb/kicker/images/dslr_images/DSC_6500.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6500.JPG
376
+ rgb/kicker/images/dslr_images/DSC_6502.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6502.JPG
377
+ rgb/kicker/images/dslr_images/DSC_6503.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6503.JPG
378
+ rgb/kicker/images/dslr_images/DSC_6504.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6504.JPG
379
+ rgb/kicker/images/dslr_images/DSC_6505.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6505.JPG
380
+ rgb/kicker/images/dslr_images/DSC_6506.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6506.JPG
381
+ rgb/kicker/images/dslr_images/DSC_6507.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6507.JPG
382
+ rgb/kicker/images/dslr_images/DSC_6508.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6508.JPG
383
+ rgb/kicker/images/dslr_images/DSC_6509.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6509.JPG
384
+ rgb/kicker/images/dslr_images/DSC_6510.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6510.JPG
385
+ rgb/kicker/images/dslr_images/DSC_6511.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6511.JPG
386
+ rgb/kicker/images/dslr_images/DSC_6512.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6512.JPG
387
+ rgb/kicker/images/dslr_images/DSC_6513.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6513.JPG
388
+ rgb/kicker/images/dslr_images/DSC_6514.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6514.JPG
389
+ rgb/kicker/images/dslr_images/DSC_6515.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6515.JPG
390
+ rgb/kicker/images/dslr_images/DSC_6516.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6516.JPG
391
+ rgb/kicker/images/dslr_images/DSC_6517.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6517.JPG
392
+ rgb/kicker/images/dslr_images/DSC_6518.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6518.JPG
393
+ rgb/kicker/images/dslr_images/DSC_6519.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6519.JPG
394
+ rgb/kicker/images/dslr_images/DSC_6520.JPG depth/kicker_dslr_depth/kicker/ground_truth_depth/dslr_images/DSC_6520.JPG
395
+ rgb/meadow/images/dslr_images/DSC_6535.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6535.JPG
396
+ rgb/meadow/images/dslr_images/DSC_6536.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6536.JPG
397
+ rgb/meadow/images/dslr_images/DSC_6537.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6537.JPG
398
+ rgb/meadow/images/dslr_images/DSC_6538.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6538.JPG
399
+ rgb/meadow/images/dslr_images/DSC_6539.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6539.JPG
400
+ rgb/meadow/images/dslr_images/DSC_6540.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6540.JPG
401
+ rgb/meadow/images/dslr_images/DSC_6541.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6541.JPG
402
+ rgb/meadow/images/dslr_images/DSC_6547.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6547.JPG
403
+ rgb/meadow/images/dslr_images/DSC_6548.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6548.JPG
404
+ rgb/meadow/images/dslr_images/DSC_6553.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6553.JPG
405
+ rgb/meadow/images/dslr_images/DSC_6556.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6556.JPG
406
+ rgb/meadow/images/dslr_images/DSC_6557.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6557.JPG
407
+ rgb/meadow/images/dslr_images/DSC_6558.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6558.JPG
408
+ rgb/meadow/images/dslr_images/DSC_6559.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6559.JPG
409
+ rgb/meadow/images/dslr_images/DSC_6560.JPG depth/meadow_dslr_depth/meadow/ground_truth_depth/dslr_images/DSC_6560.JPG
410
+ rgb/electro/images/dslr_images/DSC_9257.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9257.JPG
411
+ rgb/electro/images/dslr_images/DSC_9258.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9258.JPG
412
+ rgb/electro/images/dslr_images/DSC_9259.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9259.JPG
413
+ rgb/electro/images/dslr_images/DSC_9260.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9260.JPG
414
+ rgb/electro/images/dslr_images/DSC_9261.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9261.JPG
415
+ rgb/electro/images/dslr_images/DSC_9262.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9262.JPG
416
+ rgb/electro/images/dslr_images/DSC_9263.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9263.JPG
417
+ rgb/electro/images/dslr_images/DSC_9264.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9264.JPG
418
+ rgb/electro/images/dslr_images/DSC_9265.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9265.JPG
419
+ rgb/electro/images/dslr_images/DSC_9266.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9266.JPG
420
+ rgb/electro/images/dslr_images/DSC_9267.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9267.JPG
421
+ rgb/electro/images/dslr_images/DSC_9268.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9268.JPG
422
+ rgb/electro/images/dslr_images/DSC_9269.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9269.JPG
423
+ rgb/electro/images/dslr_images/DSC_9270.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9270.JPG
424
+ rgb/electro/images/dslr_images/DSC_9271.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9271.JPG
425
+ rgb/electro/images/dslr_images/DSC_9272.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9272.JPG
426
+ rgb/electro/images/dslr_images/DSC_9273.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9273.JPG
427
+ rgb/electro/images/dslr_images/DSC_9274.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9274.JPG
428
+ rgb/electro/images/dslr_images/DSC_9275.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9275.JPG
429
+ rgb/electro/images/dslr_images/DSC_9276.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9276.JPG
430
+ rgb/electro/images/dslr_images/DSC_9277.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9277.JPG
431
+ rgb/electro/images/dslr_images/DSC_9278.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9278.JPG
432
+ rgb/electro/images/dslr_images/DSC_9279.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9279.JPG
433
+ rgb/electro/images/dslr_images/DSC_9280.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9280.JPG
434
+ rgb/electro/images/dslr_images/DSC_9281.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9281.JPG
435
+ rgb/electro/images/dslr_images/DSC_9282.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9282.JPG
436
+ rgb/electro/images/dslr_images/DSC_9283.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9283.JPG
437
+ rgb/electro/images/dslr_images/DSC_9284.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9284.JPG
438
+ rgb/electro/images/dslr_images/DSC_9285.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9285.JPG
439
+ rgb/electro/images/dslr_images/DSC_9287.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9287.JPG
440
+ rgb/electro/images/dslr_images/DSC_9289.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9289.JPG
441
+ rgb/electro/images/dslr_images/DSC_9290.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9290.JPG
442
+ rgb/electro/images/dslr_images/DSC_9291.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9291.JPG
443
+ rgb/electro/images/dslr_images/DSC_9292.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9292.JPG
444
+ rgb/electro/images/dslr_images/DSC_9293.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9293.JPG
445
+ rgb/electro/images/dslr_images/DSC_9294.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9294.JPG
446
+ rgb/electro/images/dslr_images/DSC_9295.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9295.JPG
447
+ rgb/electro/images/dslr_images/DSC_9296.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9296.JPG
448
+ rgb/electro/images/dslr_images/DSC_9297.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9297.JPG
449
+ rgb/electro/images/dslr_images/DSC_9298.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9298.JPG
450
+ rgb/electro/images/dslr_images/DSC_9299.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9299.JPG
451
+ rgb/electro/images/dslr_images/DSC_9300.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9300.JPG
452
+ rgb/electro/images/dslr_images/DSC_9301.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9301.JPG
453
+ rgb/electro/images/dslr_images/DSC_9302.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9302.JPG
454
+ rgb/electro/images/dslr_images/DSC_9303.JPG depth/electro_dslr_depth/electro/ground_truth_depth/dslr_images/DSC_9303.JPG
Lotus-2/datasets/eval/depth/data_split/kitti/eigen_test_files_with_gt.txt ADDED
The diff for this file is too large to render. See raw diff
 
Lotus-2/datasets/eval/depth/data_split/kitti/eigen_val_from_train_800.txt ADDED
The diff for this file is too large to render. See raw diff
 
Lotus-2/datasets/eval/depth/data_split/nyu/labeled/filename_list_test.txt ADDED
@@ -0,0 +1,654 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ test/kitchen_0004/rgb_0001.png test/kitchen_0004/depth_0001.png test/kitchen_0004/filled_0001.png
2
+ test/kitchen_0004/rgb_0002.png test/kitchen_0004/depth_0002.png test/kitchen_0004/filled_0002.png
3
+ test/office_0005/rgb_0009.png test/office_0005/depth_0009.png test/office_0005/filled_0009.png
4
+ test/office_0007/rgb_0014.png test/office_0007/depth_0014.png test/office_0007/filled_0014.png
5
+ test/office_0008/rgb_0015.png test/office_0008/depth_0015.png test/office_0008/filled_0015.png
6
+ test/office_0008/rgb_0016.png test/office_0008/depth_0016.png test/office_0008/filled_0016.png
7
+ test/office_0008/rgb_0017.png test/office_0008/depth_0017.png test/office_0008/filled_0017.png
8
+ test/office_0008/rgb_0018.png test/office_0008/depth_0018.png test/office_0008/filled_0018.png
9
+ test/office_0010/rgb_0021.png test/office_0010/depth_0021.png test/office_0010/filled_0021.png
10
+ test/office_0013/rgb_0028.png test/office_0013/depth_0028.png test/office_0013/filled_0028.png
11
+ test/office_0013/rgb_0029.png test/office_0013/depth_0029.png test/office_0013/filled_0029.png
12
+ test/office_0013/rgb_0030.png test/office_0013/depth_0030.png test/office_0013/filled_0030.png
13
+ test/office_0013/rgb_0031.png test/office_0013/depth_0031.png test/office_0013/filled_0031.png
14
+ test/office_0013/rgb_0032.png test/office_0013/depth_0032.png test/office_0013/filled_0032.png
15
+ test/office_0013/rgb_0033.png test/office_0013/depth_0033.png test/office_0013/filled_0033.png
16
+ test/office_0013/rgb_0034.png test/office_0013/depth_0034.png test/office_0013/filled_0034.png
17
+ test/office_0014/rgb_0035.png test/office_0014/depth_0035.png test/office_0014/filled_0035.png
18
+ test/office_0014/rgb_0036.png test/office_0014/depth_0036.png test/office_0014/filled_0036.png
19
+ test/office_0014/rgb_0037.png test/office_0014/depth_0037.png test/office_0014/filled_0037.png
20
+ test/office_0014/rgb_0038.png test/office_0014/depth_0038.png test/office_0014/filled_0038.png
21
+ test/office_0015/rgb_0039.png test/office_0015/depth_0039.png test/office_0015/filled_0039.png
22
+ test/office_0015/rgb_0040.png test/office_0015/depth_0040.png test/office_0015/filled_0040.png
23
+ test/office_0015/rgb_0041.png test/office_0015/depth_0041.png test/office_0015/filled_0041.png
24
+ test/office_0015/rgb_0042.png test/office_0015/depth_0042.png test/office_0015/filled_0042.png
25
+ test/office_0015/rgb_0043.png test/office_0015/depth_0043.png test/office_0015/filled_0043.png
26
+ test/bathroom_0003/rgb_0046.png test/bathroom_0003/depth_0046.png test/bathroom_0003/filled_0046.png
27
+ test/bathroom_0004/rgb_0047.png test/bathroom_0004/depth_0047.png test/bathroom_0004/filled_0047.png
28
+ test/bedroom_0011/rgb_0056.png test/bedroom_0011/depth_0056.png test/bedroom_0011/filled_0056.png
29
+ test/bedroom_0011/rgb_0057.png test/bedroom_0011/depth_0057.png test/bedroom_0011/filled_0057.png
30
+ test/bedroom_0013/rgb_0059.png test/bedroom_0013/depth_0059.png test/bedroom_0013/filled_0059.png
31
+ test/bedroom_0013/rgb_0060.png test/bedroom_0013/depth_0060.png test/bedroom_0013/filled_0060.png
32
+ test/bedroom_0013/rgb_0061.png test/bedroom_0013/depth_0061.png test/bedroom_0013/filled_0061.png
33
+ test/bedroom_0013/rgb_0062.png test/bedroom_0013/depth_0062.png test/bedroom_0013/filled_0062.png
34
+ test/bedroom_0013/rgb_0063.png test/bedroom_0013/depth_0063.png test/bedroom_0013/filled_0063.png
35
+ test/bedroom_0018/rgb_0076.png test/bedroom_0018/depth_0076.png test/bedroom_0018/filled_0076.png
36
+ test/bedroom_0018/rgb_0077.png test/bedroom_0018/depth_0077.png test/bedroom_0018/filled_0077.png
37
+ test/bedroom_0018/rgb_0078.png test/bedroom_0018/depth_0078.png test/bedroom_0018/filled_0078.png
38
+ test/bedroom_0018/rgb_0079.png test/bedroom_0018/depth_0079.png test/bedroom_0018/filled_0079.png
39
+ test/bookstore_0001/rgb_0084.png test/bookstore_0001/depth_0084.png test/bookstore_0001/filled_0084.png
40
+ test/bookstore_0001/rgb_0085.png test/bookstore_0001/depth_0085.png test/bookstore_0001/filled_0085.png
41
+ test/bookstore_0001/rgb_0086.png test/bookstore_0001/depth_0086.png test/bookstore_0001/filled_0086.png
42
+ test/bookstore_0001/rgb_0087.png test/bookstore_0001/depth_0087.png test/bookstore_0001/filled_0087.png
43
+ test/bookstore_0001/rgb_0088.png test/bookstore_0001/depth_0088.png test/bookstore_0001/filled_0088.png
44
+ test/bookstore_0001/rgb_0089.png test/bookstore_0001/depth_0089.png test/bookstore_0001/filled_0089.png
45
+ test/bookstore_0001/rgb_0090.png test/bookstore_0001/depth_0090.png test/bookstore_0001/filled_0090.png
46
+ test/bookstore_0001/rgb_0091.png test/bookstore_0001/depth_0091.png test/bookstore_0001/filled_0091.png
47
+ test/bookstore_0001/rgb_0117.png test/bookstore_0001/depth_0117.png test/bookstore_0001/filled_0117.png
48
+ test/bookstore_0001/rgb_0118.png test/bookstore_0001/depth_0118.png test/bookstore_0001/filled_0118.png
49
+ test/bookstore_0001/rgb_0119.png test/bookstore_0001/depth_0119.png test/bookstore_0001/filled_0119.png
50
+ test/kitchen_0005/rgb_0125.png test/kitchen_0005/depth_0125.png test/kitchen_0005/filled_0125.png
51
+ test/kitchen_0005/rgb_0126.png test/kitchen_0005/depth_0126.png test/kitchen_0005/filled_0126.png
52
+ test/kitchen_0005/rgb_0127.png test/kitchen_0005/depth_0127.png test/kitchen_0005/filled_0127.png
53
+ test/kitchen_0005/rgb_0128.png test/kitchen_0005/depth_0128.png test/kitchen_0005/filled_0128.png
54
+ test/kitchen_0005/rgb_0129.png test/kitchen_0005/depth_0129.png test/kitchen_0005/filled_0129.png
55
+ test/kitchen_0007/rgb_0131.png test/kitchen_0007/depth_0131.png test/kitchen_0007/filled_0131.png
56
+ test/kitchen_0007/rgb_0132.png test/kitchen_0007/depth_0132.png test/kitchen_0007/filled_0132.png
57
+ test/kitchen_0007/rgb_0133.png test/kitchen_0007/depth_0133.png test/kitchen_0007/filled_0133.png
58
+ test/kitchen_0007/rgb_0134.png test/kitchen_0007/depth_0134.png test/kitchen_0007/filled_0134.png
59
+ test/kitchen_0009/rgb_0137.png test/kitchen_0009/depth_0137.png test/kitchen_0009/filled_0137.png
60
+ test/living_room_0008/rgb_0153.png test/living_room_0008/depth_0153.png test/living_room_0008/filled_0153.png
61
+ test/living_room_0008/rgb_0154.png test/living_room_0008/depth_0154.png test/living_room_0008/filled_0154.png
62
+ test/living_room_0009/rgb_0155.png test/living_room_0009/depth_0155.png test/living_room_0009/filled_0155.png
63
+ test/living_room_0013/rgb_0167.png test/living_room_0013/depth_0167.png test/living_room_0013/filled_0167.png
64
+ test/living_room_0013/rgb_0168.png test/living_room_0013/depth_0168.png test/living_room_0013/filled_0168.png
65
+ test/living_room_0014/rgb_0169.png test/living_room_0014/depth_0169.png test/living_room_0014/filled_0169.png
66
+ test/bedroom_0003/rgb_0171.png test/bedroom_0003/depth_0171.png test/bedroom_0003/filled_0171.png
67
+ test/bedroom_0003/rgb_0172.png test/bedroom_0003/depth_0172.png test/bedroom_0003/filled_0172.png
68
+ test/bedroom_0003/rgb_0173.png test/bedroom_0003/depth_0173.png test/bedroom_0003/filled_0173.png
69
+ test/bedroom_0003/rgb_0174.png test/bedroom_0003/depth_0174.png test/bedroom_0003/filled_0174.png
70
+ test/bedroom_0003/rgb_0175.png test/bedroom_0003/depth_0175.png test/bedroom_0003/filled_0175.png
71
+ test/bedroom_0003/rgb_0176.png test/bedroom_0003/depth_0176.png test/bedroom_0003/filled_0176.png
72
+ test/bedroom_0005/rgb_0180.png test/bedroom_0005/depth_0180.png test/bedroom_0005/filled_0180.png
73
+ test/bedroom_0005/rgb_0181.png test/bedroom_0005/depth_0181.png test/bedroom_0005/filled_0181.png
74
+ test/bedroom_0005/rgb_0182.png test/bedroom_0005/depth_0182.png test/bedroom_0005/filled_0182.png
75
+ test/bedroom_0006/rgb_0183.png test/bedroom_0006/depth_0183.png test/bedroom_0006/filled_0183.png
76
+ test/bedroom_0006/rgb_0184.png test/bedroom_0006/depth_0184.png test/bedroom_0006/filled_0184.png
77
+ test/bedroom_0006/rgb_0185.png test/bedroom_0006/depth_0185.png test/bedroom_0006/filled_0185.png
78
+ test/bedroom_0006/rgb_0186.png test/bedroom_0006/depth_0186.png test/bedroom_0006/filled_0186.png
79
+ test/bedroom_0006/rgb_0187.png test/bedroom_0006/depth_0187.png test/bedroom_0006/filled_0187.png
80
+ test/bedroom_0006/rgb_0188.png test/bedroom_0006/depth_0188.png test/bedroom_0006/filled_0188.png
81
+ test/bedroom_0007/rgb_0189.png test/bedroom_0007/depth_0189.png test/bedroom_0007/filled_0189.png
82
+ test/bedroom_0007/rgb_0190.png test/bedroom_0007/depth_0190.png test/bedroom_0007/filled_0190.png
83
+ test/bedroom_0007/rgb_0191.png test/bedroom_0007/depth_0191.png test/bedroom_0007/filled_0191.png
84
+ test/bedroom_0007/rgb_0192.png test/bedroom_0007/depth_0192.png test/bedroom_0007/filled_0192.png
85
+ test/bedroom_0007/rgb_0193.png test/bedroom_0007/depth_0193.png test/bedroom_0007/filled_0193.png
86
+ test/kitchen_0002/rgb_0194.png test/kitchen_0002/depth_0194.png test/kitchen_0002/filled_0194.png
87
+ test/kitchen_0002/rgb_0195.png test/kitchen_0002/depth_0195.png test/kitchen_0002/filled_0195.png
88
+ test/kitchen_0002/rgb_0196.png test/kitchen_0002/depth_0196.png test/kitchen_0002/filled_0196.png
89
+ test/kitchen_0002/rgb_0197.png test/kitchen_0002/depth_0197.png test/kitchen_0002/filled_0197.png
90
+ test/kitchen_0002/rgb_0198.png test/kitchen_0002/depth_0198.png test/kitchen_0002/filled_0198.png
91
+ test/kitchen_0002/rgb_0199.png test/kitchen_0002/depth_0199.png test/kitchen_0002/filled_0199.png
92
+ test/kitchen_0002/rgb_0200.png test/kitchen_0002/depth_0200.png test/kitchen_0002/filled_0200.png
93
+ test/kitchen_0002/rgb_0201.png test/kitchen_0002/depth_0201.png test/kitchen_0002/filled_0201.png
94
+ test/kitchen_0002/rgb_0202.png test/kitchen_0002/depth_0202.png test/kitchen_0002/filled_0202.png
95
+ test/living_room_0002/rgb_0207.png test/living_room_0002/depth_0207.png test/living_room_0002/filled_0207.png
96
+ test/living_room_0003/rgb_0208.png test/living_room_0003/depth_0208.png test/living_room_0003/filled_0208.png
97
+ test/living_room_0003/rgb_0209.png test/living_room_0003/depth_0209.png test/living_room_0003/filled_0209.png
98
+ test/living_room_0003/rgb_0210.png test/living_room_0003/depth_0210.png test/living_room_0003/filled_0210.png
99
+ test/living_room_0003/rgb_0211.png test/living_room_0003/depth_0211.png test/living_room_0003/filled_0211.png
100
+ test/living_room_0003/rgb_0212.png test/living_room_0003/depth_0212.png test/living_room_0003/filled_0212.png
101
+ test/bedroom_0022/rgb_0220.png test/bedroom_0022/depth_0220.png test/bedroom_0022/filled_0220.png
102
+ test/bedroom_0024/rgb_0221.png test/bedroom_0024/depth_0221.png test/bedroom_0024/filled_0221.png
103
+ test/bedroom_0024/rgb_0222.png test/bedroom_0024/depth_0222.png test/bedroom_0024/filled_0222.png
104
+ test/kitchen_0015/rgb_0250.png test/kitchen_0015/depth_0250.png test/kitchen_0015/filled_0250.png
105
+ test/living_room_0021/rgb_0264.png test/living_room_0021/depth_0264.png test/living_room_0021/filled_0264.png
106
+ test/office_0016/rgb_0271.png test/office_0016/depth_0271.png test/office_0016/filled_0271.png
107
+ test/office_0017/rgb_0272.png test/office_0017/depth_0272.png test/office_0017/filled_0272.png
108
+ test/study_room_0001/rgb_0273.png test/study_room_0001/depth_0273.png test/study_room_0001/filled_0273.png
109
+ test/study_room_0006/rgb_0279.png test/study_room_0006/depth_0279.png test/study_room_0006/filled_0279.png
110
+ test/bedroom_0131/rgb_0280.png test/bedroom_0131/depth_0280.png test/bedroom_0131/filled_0280.png
111
+ test/bedroom_0131/rgb_0281.png test/bedroom_0131/depth_0281.png test/bedroom_0131/filled_0281.png
112
+ test/bedroom_0131/rgb_0282.png test/bedroom_0131/depth_0282.png test/bedroom_0131/filled_0282.png
113
+ test/bedroom_0131/rgb_0283.png test/bedroom_0131/depth_0283.png test/bedroom_0131/filled_0283.png
114
+ test/classroom_0001/rgb_0284.png test/classroom_0001/depth_0284.png test/classroom_0001/filled_0284.png
115
+ test/classroom_0001/rgb_0285.png test/classroom_0001/depth_0285.png test/classroom_0001/filled_0285.png
116
+ test/classroom_0007/rgb_0296.png test/classroom_0007/depth_0296.png test/classroom_0007/filled_0296.png
117
+ test/classroom_0007/rgb_0297.png test/classroom_0007/depth_0297.png test/classroom_0007/filled_0297.png
118
+ test/classroom_0007/rgb_0298.png test/classroom_0007/depth_0298.png test/classroom_0007/filled_0298.png
119
+ test/classroom_0008/rgb_0299.png test/classroom_0008/depth_0299.png test/classroom_0008/filled_0299.png
120
+ test/classroom_0008/rgb_0300.png test/classroom_0008/depth_0300.png test/classroom_0008/filled_0300.png
121
+ test/classroom_0009/rgb_0301.png test/classroom_0009/depth_0301.png test/classroom_0009/filled_0301.png
122
+ test/classroom_0009/rgb_0302.png test/classroom_0009/depth_0302.png test/classroom_0009/filled_0302.png
123
+ test/classroom_0014/rgb_0310.png test/classroom_0014/depth_0310.png test/classroom_0014/filled_0310.png
124
+ test/classroom_0014/rgb_0311.png test/classroom_0014/depth_0311.png test/classroom_0014/filled_0311.png
125
+ test/classroom_0015/rgb_0312.png test/classroom_0015/depth_0312.png test/classroom_0015/filled_0312.png
126
+ test/classroom_0017/rgb_0315.png test/classroom_0017/depth_0315.png test/classroom_0017/filled_0315.png
127
+ test/classroom_0017/rgb_0316.png test/classroom_0017/depth_0316.png test/classroom_0017/filled_0316.png
128
+ test/classroom_0017/rgb_0317.png test/classroom_0017/depth_0317.png test/classroom_0017/filled_0317.png
129
+ test/classroom_0023/rgb_0325.png test/classroom_0023/depth_0325.png test/classroom_0023/filled_0325.png
130
+ test/classroom_0023/rgb_0326.png test/classroom_0023/depth_0326.png test/classroom_0023/filled_0326.png
131
+ test/classroom_0023/rgb_0327.png test/classroom_0023/depth_0327.png test/classroom_0023/filled_0327.png
132
+ test/classroom_0023/rgb_0328.png test/classroom_0023/depth_0328.png test/classroom_0023/filled_0328.png
133
+ test/classroom_0024/rgb_0329.png test/classroom_0024/depth_0329.png test/classroom_0024/filled_0329.png
134
+ test/classroom_0024/rgb_0330.png test/classroom_0024/depth_0330.png test/classroom_0024/filled_0330.png
135
+ test/classroom_0026/rgb_0331.png test/classroom_0026/depth_0331.png test/classroom_0026/filled_0331.png
136
+ test/classroom_0026/rgb_0332.png test/classroom_0026/depth_0332.png test/classroom_0026/filled_0332.png
137
+ test/computer_lab_0001/rgb_0333.png test/computer_lab_0001/depth_0333.png test/computer_lab_0001/filled_0333.png
138
+ test/computer_lab_0001/rgb_0334.png test/computer_lab_0001/depth_0334.png test/computer_lab_0001/filled_0334.png
139
+ test/computer_lab_0001/rgb_0335.png test/computer_lab_0001/depth_0335.png test/computer_lab_0001/filled_0335.png
140
+ test/foyer_0001/rgb_0351.png test/foyer_0001/depth_0351.png test/foyer_0001/filled_0351.png
141
+ test/foyer_0001/rgb_0352.png test/foyer_0001/depth_0352.png test/foyer_0001/filled_0352.png
142
+ test/home_office_0001/rgb_0355.png test/home_office_0001/depth_0355.png test/home_office_0001/filled_0355.png
143
+ test/home_office_0001/rgb_0356.png test/home_office_0001/depth_0356.png test/home_office_0001/filled_0356.png
144
+ test/home_office_0001/rgb_0357.png test/home_office_0001/depth_0357.png test/home_office_0001/filled_0357.png
145
+ test/home_office_0001/rgb_0358.png test/home_office_0001/depth_0358.png test/home_office_0001/filled_0358.png
146
+ test/home_office_0002/rgb_0359.png test/home_office_0002/depth_0359.png test/home_office_0002/filled_0359.png
147
+ test/home_office_0002/rgb_0360.png test/home_office_0002/depth_0360.png test/home_office_0002/filled_0360.png
148
+ test/home_office_0002/rgb_0361.png test/home_office_0002/depth_0361.png test/home_office_0002/filled_0361.png
149
+ test/home_office_0002/rgb_0362.png test/home_office_0002/depth_0362.png test/home_office_0002/filled_0362.png
150
+ test/home_office_0003/rgb_0363.png test/home_office_0003/depth_0363.png test/home_office_0003/filled_0363.png
151
+ test/home_office_0003/rgb_0364.png test/home_office_0003/depth_0364.png test/home_office_0003/filled_0364.png
152
+ test/home_office_0009/rgb_0384.png test/home_office_0009/depth_0384.png test/home_office_0009/filled_0384.png
153
+ test/home_office_0009/rgb_0385.png test/home_office_0009/depth_0385.png test/home_office_0009/filled_0385.png
154
+ test/home_office_0009/rgb_0386.png test/home_office_0009/depth_0386.png test/home_office_0009/filled_0386.png
155
+ test/home_office_0010/rgb_0387.png test/home_office_0010/depth_0387.png test/home_office_0010/filled_0387.png
156
+ test/home_office_0010/rgb_0388.png test/home_office_0010/depth_0388.png test/home_office_0010/filled_0388.png
157
+ test/home_office_0010/rgb_0389.png test/home_office_0010/depth_0389.png test/home_office_0010/filled_0389.png
158
+ test/home_office_0010/rgb_0390.png test/home_office_0010/depth_0390.png test/home_office_0010/filled_0390.png
159
+ test/home_office_0012/rgb_0395.png test/home_office_0012/depth_0395.png test/home_office_0012/filled_0395.png
160
+ test/home_office_0012/rgb_0396.png test/home_office_0012/depth_0396.png test/home_office_0012/filled_0396.png
161
+ test/home_office_0012/rgb_0397.png test/home_office_0012/depth_0397.png test/home_office_0012/filled_0397.png
162
+ test/office_kitchen_0002/rgb_0411.png test/office_kitchen_0002/depth_0411.png test/office_kitchen_0002/filled_0411.png
163
+ test/office_kitchen_0002/rgb_0412.png test/office_kitchen_0002/depth_0412.png test/office_kitchen_0002/filled_0412.png
164
+ test/office_kitchen_0002/rgb_0413.png test/office_kitchen_0002/depth_0413.png test/office_kitchen_0002/filled_0413.png
165
+ test/office_kitchen_0002/rgb_0414.png test/office_kitchen_0002/depth_0414.png test/office_kitchen_0002/filled_0414.png
166
+ test/playroom_0005/rgb_0430.png test/playroom_0005/depth_0430.png test/playroom_0005/filled_0430.png
167
+ test/playroom_0005/rgb_0431.png test/playroom_0005/depth_0431.png test/playroom_0005/filled_0431.png
168
+ test/playroom_0005/rgb_0432.png test/playroom_0005/depth_0432.png test/playroom_0005/filled_0432.png
169
+ test/playroom_0005/rgb_0433.png test/playroom_0005/depth_0433.png test/playroom_0005/filled_0433.png
170
+ test/playroom_0005/rgb_0434.png test/playroom_0005/depth_0434.png test/playroom_0005/filled_0434.png
171
+ test/playroom_0005/rgb_0435.png test/playroom_0005/depth_0435.png test/playroom_0005/filled_0435.png
172
+ test/playroom_0007/rgb_0441.png test/playroom_0007/depth_0441.png test/playroom_0007/filled_0441.png
173
+ test/playroom_0007/rgb_0442.png test/playroom_0007/depth_0442.png test/playroom_0007/filled_0442.png
174
+ test/playroom_0007/rgb_0443.png test/playroom_0007/depth_0443.png test/playroom_0007/filled_0443.png
175
+ test/playroom_0008/rgb_0444.png test/playroom_0008/depth_0444.png test/playroom_0008/filled_0444.png
176
+ test/playroom_0008/rgb_0445.png test/playroom_0008/depth_0445.png test/playroom_0008/filled_0445.png
177
+ test/playroom_0008/rgb_0446.png test/playroom_0008/depth_0446.png test/playroom_0008/filled_0446.png
178
+ test/playroom_0008/rgb_0447.png test/playroom_0008/depth_0447.png test/playroom_0008/filled_0447.png
179
+ test/playroom_0008/rgb_0448.png test/playroom_0008/depth_0448.png test/playroom_0008/filled_0448.png
180
+ test/reception_room_0003/rgb_0462.png test/reception_room_0003/depth_0462.png test/reception_room_0003/filled_0462.png
181
+ test/reception_room_0003/rgb_0463.png test/reception_room_0003/depth_0463.png test/reception_room_0003/filled_0463.png
182
+ test/reception_room_0003/rgb_0464.png test/reception_room_0003/depth_0464.png test/reception_room_0003/filled_0464.png
183
+ test/reception_room_0003/rgb_0465.png test/reception_room_0003/depth_0465.png test/reception_room_0003/filled_0465.png
184
+ test/reception_room_0003/rgb_0466.png test/reception_room_0003/depth_0466.png test/reception_room_0003/filled_0466.png
185
+ test/study_0001/rgb_0469.png test/study_0001/depth_0469.png test/study_0001/filled_0469.png
186
+ test/study_0001/rgb_0470.png test/study_0001/depth_0470.png test/study_0001/filled_0470.png
187
+ test/study_0001/rgb_0471.png test/study_0001/depth_0471.png test/study_0001/filled_0471.png
188
+ test/study_0001/rgb_0472.png test/study_0001/depth_0472.png test/study_0001/filled_0472.png
189
+ test/study_0001/rgb_0473.png test/study_0001/depth_0473.png test/study_0001/filled_0473.png
190
+ test/study_0002/rgb_0474.png test/study_0002/depth_0474.png test/study_0002/filled_0474.png
191
+ test/study_0002/rgb_0475.png test/study_0002/depth_0475.png test/study_0002/filled_0475.png
192
+ test/study_0002/rgb_0476.png test/study_0002/depth_0476.png test/study_0002/filled_0476.png
193
+ test/study_0002/rgb_0477.png test/study_0002/depth_0477.png test/study_0002/filled_0477.png
194
+ test/bathroom_0058/rgb_0508.png test/bathroom_0058/depth_0508.png test/bathroom_0058/filled_0508.png
195
+ test/bathroom_0058/rgb_0509.png test/bathroom_0058/depth_0509.png test/bathroom_0058/filled_0509.png
196
+ test/bathroom_0058/rgb_0510.png test/bathroom_0058/depth_0510.png test/bathroom_0058/filled_0510.png
197
+ test/bathroom_0060/rgb_0511.png test/bathroom_0060/depth_0511.png test/bathroom_0060/filled_0511.png
198
+ test/bathroom_0060/rgb_0512.png test/bathroom_0060/depth_0512.png test/bathroom_0060/filled_0512.png
199
+ test/bathroom_0060/rgb_0513.png test/bathroom_0060/depth_0513.png test/bathroom_0060/filled_0513.png
200
+ test/bedroom_0133/rgb_0515.png test/bedroom_0133/depth_0515.png test/bedroom_0133/filled_0515.png
201
+ test/bedroom_0133/rgb_0516.png test/bedroom_0133/depth_0516.png test/bedroom_0133/filled_0516.png
202
+ test/bedroom_0133/rgb_0517.png test/bedroom_0133/depth_0517.png test/bedroom_0133/filled_0517.png
203
+ test/bedroom_0133/rgb_0518.png test/bedroom_0133/depth_0518.png test/bedroom_0133/filled_0518.png
204
+ test/bedroom_0133/rgb_0519.png test/bedroom_0133/depth_0519.png test/bedroom_0133/filled_0519.png
205
+ test/bedroom_0134/rgb_0520.png test/bedroom_0134/depth_0520.png test/bedroom_0134/filled_0520.png
206
+ test/bedroom_0134/rgb_0521.png test/bedroom_0134/depth_0521.png test/bedroom_0134/filled_0521.png
207
+ test/bedroom_0134/rgb_0522.png test/bedroom_0134/depth_0522.png test/bedroom_0134/filled_0522.png
208
+ test/bedroom_0135/rgb_0523.png test/bedroom_0135/depth_0523.png test/bedroom_0135/filled_0523.png
209
+ test/bedroom_0135/rgb_0524.png test/bedroom_0135/depth_0524.png test/bedroom_0135/filled_0524.png
210
+ test/bedroom_0135/rgb_0525.png test/bedroom_0135/depth_0525.png test/bedroom_0135/filled_0525.png
211
+ test/bedroom_0135/rgb_0526.png test/bedroom_0135/depth_0526.png test/bedroom_0135/filled_0526.png
212
+ test/bedroom_0137/rgb_0531.png test/bedroom_0137/depth_0531.png test/bedroom_0137/filled_0531.png
213
+ test/bedroom_0137/rgb_0532.png test/bedroom_0137/depth_0532.png test/bedroom_0137/filled_0532.png
214
+ test/bedroom_0137/rgb_0533.png test/bedroom_0137/depth_0533.png test/bedroom_0137/filled_0533.png
215
+ test/bedroom_0139/rgb_0537.png test/bedroom_0139/depth_0537.png test/bedroom_0139/filled_0537.png
216
+ test/bedroom_0139/rgb_0538.png test/bedroom_0139/depth_0538.png test/bedroom_0139/filled_0538.png
217
+ test/bedroom_0139/rgb_0539.png test/bedroom_0139/depth_0539.png test/bedroom_0139/filled_0539.png
218
+ test/dining_room_0038/rgb_0549.png test/dining_room_0038/depth_0549.png test/dining_room_0038/filled_0549.png
219
+ test/dining_room_0038/rgb_0550.png test/dining_room_0038/depth_0550.png test/dining_room_0038/filled_0550.png
220
+ test/dining_room_0038/rgb_0551.png test/dining_room_0038/depth_0551.png test/dining_room_0038/filled_0551.png
221
+ test/home_office_0014/rgb_0555.png test/home_office_0014/depth_0555.png test/home_office_0014/filled_0555.png
222
+ test/home_office_0014/rgb_0556.png test/home_office_0014/depth_0556.png test/home_office_0014/filled_0556.png
223
+ test/home_office_0014/rgb_0557.png test/home_office_0014/depth_0557.png test/home_office_0014/filled_0557.png
224
+ test/home_office_0014/rgb_0558.png test/home_office_0014/depth_0558.png test/home_office_0014/filled_0558.png
225
+ test/kitchen_0055/rgb_0559.png test/kitchen_0055/depth_0559.png test/kitchen_0055/filled_0559.png
226
+ test/kitchen_0055/rgb_0560.png test/kitchen_0055/depth_0560.png test/kitchen_0055/filled_0560.png
227
+ test/kitchen_0056/rgb_0561.png test/kitchen_0056/depth_0561.png test/kitchen_0056/filled_0561.png
228
+ test/kitchen_0056/rgb_0562.png test/kitchen_0056/depth_0562.png test/kitchen_0056/filled_0562.png
229
+ test/kitchen_0056/rgb_0563.png test/kitchen_0056/depth_0563.png test/kitchen_0056/filled_0563.png
230
+ test/kitchen_0056/rgb_0564.png test/kitchen_0056/depth_0564.png test/kitchen_0056/filled_0564.png
231
+ test/kitchen_0057/rgb_0565.png test/kitchen_0057/depth_0565.png test/kitchen_0057/filled_0565.png
232
+ test/kitchen_0057/rgb_0566.png test/kitchen_0057/depth_0566.png test/kitchen_0057/filled_0566.png
233
+ test/kitchen_0057/rgb_0567.png test/kitchen_0057/depth_0567.png test/kitchen_0057/filled_0567.png
234
+ test/kitchen_0057/rgb_0568.png test/kitchen_0057/depth_0568.png test/kitchen_0057/filled_0568.png
235
+ test/kitchen_0058/rgb_0569.png test/kitchen_0058/depth_0569.png test/kitchen_0058/filled_0569.png
236
+ test/kitchen_0058/rgb_0570.png test/kitchen_0058/depth_0570.png test/kitchen_0058/filled_0570.png
237
+ test/kitchen_0058/rgb_0571.png test/kitchen_0058/depth_0571.png test/kitchen_0058/filled_0571.png
238
+ test/living_room_0081/rgb_0579.png test/living_room_0081/depth_0579.png test/living_room_0081/filled_0579.png
239
+ test/living_room_0081/rgb_0580.png test/living_room_0081/depth_0580.png test/living_room_0081/filled_0580.png
240
+ test/living_room_0081/rgb_0581.png test/living_room_0081/depth_0581.png test/living_room_0081/filled_0581.png
241
+ test/living_room_0081/rgb_0582.png test/living_room_0081/depth_0582.png test/living_room_0081/filled_0582.png
242
+ test/living_room_0081/rgb_0583.png test/living_room_0081/depth_0583.png test/living_room_0081/filled_0583.png
243
+ test/living_room_0084/rgb_0591.png test/living_room_0084/depth_0591.png test/living_room_0084/filled_0591.png
244
+ test/living_room_0084/rgb_0592.png test/living_room_0084/depth_0592.png test/living_room_0084/filled_0592.png
245
+ test/living_room_0084/rgb_0593.png test/living_room_0084/depth_0593.png test/living_room_0084/filled_0593.png
246
+ test/living_room_0084/rgb_0594.png test/living_room_0084/depth_0594.png test/living_room_0084/filled_0594.png
247
+ test/living_room_0087/rgb_0603.png test/living_room_0087/depth_0603.png test/living_room_0087/filled_0603.png
248
+ test/living_room_0087/rgb_0604.png test/living_room_0087/depth_0604.png test/living_room_0087/filled_0604.png
249
+ test/living_room_0087/rgb_0605.png test/living_room_0087/depth_0605.png test/living_room_0087/filled_0605.png
250
+ test/living_room_0087/rgb_0606.png test/living_room_0087/depth_0606.png test/living_room_0087/filled_0606.png
251
+ test/living_room_0087/rgb_0607.png test/living_room_0087/depth_0607.png test/living_room_0087/filled_0607.png
252
+ test/office_0020/rgb_0612.png test/office_0020/depth_0612.png test/office_0020/filled_0612.png
253
+ test/office_0020/rgb_0613.png test/office_0020/depth_0613.png test/office_0020/filled_0613.png
254
+ test/office_0022/rgb_0617.png test/office_0022/depth_0617.png test/office_0022/filled_0617.png
255
+ test/office_0022/rgb_0618.png test/office_0022/depth_0618.png test/office_0022/filled_0618.png
256
+ test/office_0022/rgb_0619.png test/office_0022/depth_0619.png test/office_0022/filled_0619.png
257
+ test/office_0022/rgb_0620.png test/office_0022/depth_0620.png test/office_0022/filled_0620.png
258
+ test/office_0022/rgb_0621.png test/office_0022/depth_0621.png test/office_0022/filled_0621.png
259
+ test/office_0027/rgb_0633.png test/office_0027/depth_0633.png test/office_0027/filled_0633.png
260
+ test/office_0027/rgb_0634.png test/office_0027/depth_0634.png test/office_0027/filled_0634.png
261
+ test/office_0027/rgb_0635.png test/office_0027/depth_0635.png test/office_0027/filled_0635.png
262
+ test/office_0027/rgb_0636.png test/office_0027/depth_0636.png test/office_0027/filled_0636.png
263
+ test/office_0027/rgb_0637.png test/office_0027/depth_0637.png test/office_0027/filled_0637.png
264
+ test/office_0027/rgb_0638.png test/office_0027/depth_0638.png test/office_0027/filled_0638.png
265
+ test/study_0007/rgb_0644.png test/study_0007/depth_0644.png test/study_0007/filled_0644.png
266
+ test/study_0007/rgb_0645.png test/study_0007/depth_0645.png test/study_0007/filled_0645.png
267
+ test/bathroom_0008/rgb_0650.png test/bathroom_0008/depth_0650.png test/bathroom_0008/filled_0650.png
268
+ test/bathroom_0009/rgb_0651.png test/bathroom_0009/depth_0651.png test/bathroom_0009/filled_0651.png
269
+ test/bathroom_0012/rgb_0656.png test/bathroom_0012/depth_0656.png test/bathroom_0012/filled_0656.png
270
+ test/bathroom_0012/rgb_0657.png test/bathroom_0012/depth_0657.png test/bathroom_0012/filled_0657.png
271
+ test/bathroom_0012/rgb_0658.png test/bathroom_0012/depth_0658.png test/bathroom_0012/filled_0658.png
272
+ test/bathroom_0015/rgb_0663.png test/bathroom_0015/depth_0663.png test/bathroom_0015/filled_0663.png
273
+ test/bathroom_0015/rgb_0664.png test/bathroom_0015/depth_0664.png test/bathroom_0015/filled_0664.png
274
+ test/bathroom_0017/rgb_0668.png test/bathroom_0017/depth_0668.png test/bathroom_0017/filled_0668.png
275
+ test/bathroom_0017/rgb_0669.png test/bathroom_0017/depth_0669.png test/bathroom_0017/filled_0669.png
276
+ test/bathroom_0017/rgb_0670.png test/bathroom_0017/depth_0670.png test/bathroom_0017/filled_0670.png
277
+ test/bathroom_0018/rgb_0671.png test/bathroom_0018/depth_0671.png test/bathroom_0018/filled_0671.png
278
+ test/bathroom_0018/rgb_0672.png test/bathroom_0018/depth_0672.png test/bathroom_0018/filled_0672.png
279
+ test/bathroom_0018/rgb_0673.png test/bathroom_0018/depth_0673.png test/bathroom_0018/filled_0673.png
280
+ test/bathroom_0020/rgb_0676.png test/bathroom_0020/depth_0676.png test/bathroom_0020/filled_0676.png
281
+ test/bathroom_0020/rgb_0677.png test/bathroom_0020/depth_0677.png test/bathroom_0020/filled_0677.png
282
+ test/bathroom_0021/rgb_0678.png test/bathroom_0021/depth_0678.png test/bathroom_0021/filled_0678.png
283
+ test/bathroom_0021/rgb_0679.png test/bathroom_0021/depth_0679.png test/bathroom_0021/filled_0679.png
284
+ test/bathroom_0022/rgb_0680.png test/bathroom_0022/depth_0680.png test/bathroom_0022/filled_0680.png
285
+ test/bathroom_0022/rgb_0681.png test/bathroom_0022/depth_0681.png test/bathroom_0022/filled_0681.png
286
+ test/bathroom_0025/rgb_0686.png test/bathroom_0025/depth_0686.png test/bathroom_0025/filled_0686.png
287
+ test/bathroom_0025/rgb_0687.png test/bathroom_0025/depth_0687.png test/bathroom_0025/filled_0687.png
288
+ test/bathroom_0026/rgb_0688.png test/bathroom_0026/depth_0688.png test/bathroom_0026/filled_0688.png
289
+ test/bathroom_0026/rgb_0689.png test/bathroom_0026/depth_0689.png test/bathroom_0026/filled_0689.png
290
+ test/bathroom_0026/rgb_0690.png test/bathroom_0026/depth_0690.png test/bathroom_0026/filled_0690.png
291
+ test/bathroom_0029/rgb_0693.png test/bathroom_0029/depth_0693.png test/bathroom_0029/filled_0693.png
292
+ test/bathroom_0029/rgb_0694.png test/bathroom_0029/depth_0694.png test/bathroom_0029/filled_0694.png
293
+ test/bathroom_0031/rgb_0697.png test/bathroom_0031/depth_0697.png test/bathroom_0031/filled_0697.png
294
+ test/bathroom_0031/rgb_0698.png test/bathroom_0031/depth_0698.png test/bathroom_0031/filled_0698.png
295
+ test/bathroom_0031/rgb_0699.png test/bathroom_0031/depth_0699.png test/bathroom_0031/filled_0699.png
296
+ test/bathroom_0036/rgb_0706.png test/bathroom_0036/depth_0706.png test/bathroom_0036/filled_0706.png
297
+ test/bathroom_0036/rgb_0707.png test/bathroom_0036/depth_0707.png test/bathroom_0036/filled_0707.png
298
+ test/bathroom_0036/rgb_0708.png test/bathroom_0036/depth_0708.png test/bathroom_0036/filled_0708.png
299
+ test/bathroom_0037/rgb_0709.png test/bathroom_0037/depth_0709.png test/bathroom_0037/filled_0709.png
300
+ test/bathroom_0037/rgb_0710.png test/bathroom_0037/depth_0710.png test/bathroom_0037/filled_0710.png
301
+ test/bathroom_0038/rgb_0711.png test/bathroom_0038/depth_0711.png test/bathroom_0038/filled_0711.png
302
+ test/bathroom_0038/rgb_0712.png test/bathroom_0038/depth_0712.png test/bathroom_0038/filled_0712.png
303
+ test/bathroom_0038/rgb_0713.png test/bathroom_0038/depth_0713.png test/bathroom_0038/filled_0713.png
304
+ test/bathroom_0040/rgb_0717.png test/bathroom_0040/depth_0717.png test/bathroom_0040/filled_0717.png
305
+ test/bathroom_0040/rgb_0718.png test/bathroom_0040/depth_0718.png test/bathroom_0040/filled_0718.png
306
+ test/bathroom_0043/rgb_0724.png test/bathroom_0043/depth_0724.png test/bathroom_0043/filled_0724.png
307
+ test/bathroom_0043/rgb_0725.png test/bathroom_0043/depth_0725.png test/bathroom_0043/filled_0725.png
308
+ test/bathroom_0043/rgb_0726.png test/bathroom_0043/depth_0726.png test/bathroom_0043/filled_0726.png
309
+ test/bathroom_0044/rgb_0727.png test/bathroom_0044/depth_0727.png test/bathroom_0044/filled_0727.png
310
+ test/bathroom_0044/rgb_0728.png test/bathroom_0044/depth_0728.png test/bathroom_0044/filled_0728.png
311
+ test/bathroom_0046/rgb_0731.png test/bathroom_0046/depth_0731.png test/bathroom_0046/filled_0731.png
312
+ test/bathroom_0046/rgb_0732.png test/bathroom_0046/depth_0732.png test/bathroom_0046/filled_0732.png
313
+ test/bathroom_0047/rgb_0733.png test/bathroom_0047/depth_0733.png test/bathroom_0047/filled_0733.png
314
+ test/bathroom_0047/rgb_0734.png test/bathroom_0047/depth_0734.png test/bathroom_0047/filled_0734.png
315
+ test/bathroom_0052/rgb_0743.png test/bathroom_0052/depth_0743.png test/bathroom_0052/filled_0743.png
316
+ test/bathroom_0052/rgb_0744.png test/bathroom_0052/depth_0744.png test/bathroom_0052/filled_0744.png
317
+ test/kitchen_0021/rgb_0759.png test/kitchen_0021/depth_0759.png test/kitchen_0021/filled_0759.png
318
+ test/kitchen_0021/rgb_0760.png test/kitchen_0021/depth_0760.png test/kitchen_0021/filled_0760.png
319
+ test/kitchen_0021/rgb_0761.png test/kitchen_0021/depth_0761.png test/kitchen_0021/filled_0761.png
320
+ test/kitchen_0022/rgb_0762.png test/kitchen_0022/depth_0762.png test/kitchen_0022/filled_0762.png
321
+ test/kitchen_0022/rgb_0763.png test/kitchen_0022/depth_0763.png test/kitchen_0022/filled_0763.png
322
+ test/kitchen_0022/rgb_0764.png test/kitchen_0022/depth_0764.png test/kitchen_0022/filled_0764.png
323
+ test/kitchen_0022/rgb_0765.png test/kitchen_0022/depth_0765.png test/kitchen_0022/filled_0765.png
324
+ test/kitchen_0022/rgb_0766.png test/kitchen_0022/depth_0766.png test/kitchen_0022/filled_0766.png
325
+ test/kitchen_0023/rgb_0767.png test/kitchen_0023/depth_0767.png test/kitchen_0023/filled_0767.png
326
+ test/kitchen_0023/rgb_0768.png test/kitchen_0023/depth_0768.png test/kitchen_0023/filled_0768.png
327
+ test/kitchen_0023/rgb_0769.png test/kitchen_0023/depth_0769.png test/kitchen_0023/filled_0769.png
328
+ test/kitchen_0023/rgb_0770.png test/kitchen_0023/depth_0770.png test/kitchen_0023/filled_0770.png
329
+ test/kitchen_0023/rgb_0771.png test/kitchen_0023/depth_0771.png test/kitchen_0023/filled_0771.png
330
+ test/kitchen_0024/rgb_0772.png test/kitchen_0024/depth_0772.png test/kitchen_0024/filled_0772.png
331
+ test/kitchen_0024/rgb_0773.png test/kitchen_0024/depth_0773.png test/kitchen_0024/filled_0773.png
332
+ test/kitchen_0024/rgb_0774.png test/kitchen_0024/depth_0774.png test/kitchen_0024/filled_0774.png
333
+ test/kitchen_0024/rgb_0775.png test/kitchen_0024/depth_0775.png test/kitchen_0024/filled_0775.png
334
+ test/kitchen_0024/rgb_0776.png test/kitchen_0024/depth_0776.png test/kitchen_0024/filled_0776.png
335
+ test/kitchen_0025/rgb_0777.png test/kitchen_0025/depth_0777.png test/kitchen_0025/filled_0777.png
336
+ test/kitchen_0025/rgb_0778.png test/kitchen_0025/depth_0778.png test/kitchen_0025/filled_0778.png
337
+ test/kitchen_0025/rgb_0779.png test/kitchen_0025/depth_0779.png test/kitchen_0025/filled_0779.png
338
+ test/kitchen_0026/rgb_0780.png test/kitchen_0026/depth_0780.png test/kitchen_0026/filled_0780.png
339
+ test/kitchen_0026/rgb_0781.png test/kitchen_0026/depth_0781.png test/kitchen_0026/filled_0781.png
340
+ test/kitchen_0026/rgb_0782.png test/kitchen_0026/depth_0782.png test/kitchen_0026/filled_0782.png
341
+ test/kitchen_0027/rgb_0783.png test/kitchen_0027/depth_0783.png test/kitchen_0027/filled_0783.png
342
+ test/kitchen_0027/rgb_0784.png test/kitchen_0027/depth_0784.png test/kitchen_0027/filled_0784.png
343
+ test/kitchen_0027/rgb_0785.png test/kitchen_0027/depth_0785.png test/kitchen_0027/filled_0785.png
344
+ test/kitchen_0027/rgb_0786.png test/kitchen_0027/depth_0786.png test/kitchen_0027/filled_0786.png
345
+ test/kitchen_0027/rgb_0787.png test/kitchen_0027/depth_0787.png test/kitchen_0027/filled_0787.png
346
+ test/kitchen_0030/rgb_0800.png test/kitchen_0030/depth_0800.png test/kitchen_0030/filled_0800.png
347
+ test/kitchen_0030/rgb_0801.png test/kitchen_0030/depth_0801.png test/kitchen_0030/filled_0801.png
348
+ test/kitchen_0030/rgb_0802.png test/kitchen_0030/depth_0802.png test/kitchen_0030/filled_0802.png
349
+ test/kitchen_0030/rgb_0803.png test/kitchen_0030/depth_0803.png test/kitchen_0030/filled_0803.png
350
+ test/kitchen_0030/rgb_0804.png test/kitchen_0030/depth_0804.png test/kitchen_0030/filled_0804.png
351
+ test/kitchen_0032/rgb_0810.png test/kitchen_0032/depth_0810.png test/kitchen_0032/filled_0810.png
352
+ test/kitchen_0032/rgb_0811.png test/kitchen_0032/depth_0811.png test/kitchen_0032/filled_0811.png
353
+ test/kitchen_0032/rgb_0812.png test/kitchen_0032/depth_0812.png test/kitchen_0032/filled_0812.png
354
+ test/kitchen_0032/rgb_0813.png test/kitchen_0032/depth_0813.png test/kitchen_0032/filled_0813.png
355
+ test/kitchen_0032/rgb_0814.png test/kitchen_0032/depth_0814.png test/kitchen_0032/filled_0814.png
356
+ test/kitchen_0034/rgb_0821.png test/kitchen_0034/depth_0821.png test/kitchen_0034/filled_0821.png
357
+ test/kitchen_0034/rgb_0822.png test/kitchen_0034/depth_0822.png test/kitchen_0034/filled_0822.png
358
+ test/kitchen_0034/rgb_0823.png test/kitchen_0034/depth_0823.png test/kitchen_0034/filled_0823.png
359
+ test/kitchen_0038/rgb_0833.png test/kitchen_0038/depth_0833.png test/kitchen_0038/filled_0833.png
360
+ test/kitchen_0038/rgb_0834.png test/kitchen_0038/depth_0834.png test/kitchen_0038/filled_0834.png
361
+ test/kitchen_0038/rgb_0835.png test/kitchen_0038/depth_0835.png test/kitchen_0038/filled_0835.png
362
+ test/kitchen_0038/rgb_0836.png test/kitchen_0038/depth_0836.png test/kitchen_0038/filled_0836.png
363
+ test/kitchen_0039/rgb_0837.png test/kitchen_0039/depth_0837.png test/kitchen_0039/filled_0837.png
364
+ test/kitchen_0039/rgb_0838.png test/kitchen_0039/depth_0838.png test/kitchen_0039/filled_0838.png
365
+ test/kitchen_0039/rgb_0839.png test/kitchen_0039/depth_0839.png test/kitchen_0039/filled_0839.png
366
+ test/kitchen_0039/rgb_0840.png test/kitchen_0039/depth_0840.png test/kitchen_0039/filled_0840.png
367
+ test/kitchen_0039/rgb_0841.png test/kitchen_0039/depth_0841.png test/kitchen_0039/filled_0841.png
368
+ test/kitchen_0039/rgb_0842.png test/kitchen_0039/depth_0842.png test/kitchen_0039/filled_0842.png
369
+ test/kitchen_0040/rgb_0843.png test/kitchen_0040/depth_0843.png test/kitchen_0040/filled_0843.png
370
+ test/kitchen_0040/rgb_0844.png test/kitchen_0040/depth_0844.png test/kitchen_0040/filled_0844.png
371
+ test/kitchen_0040/rgb_0845.png test/kitchen_0040/depth_0845.png test/kitchen_0040/filled_0845.png
372
+ test/kitchen_0040/rgb_0846.png test/kitchen_0040/depth_0846.png test/kitchen_0040/filled_0846.png
373
+ test/kitchen_0042/rgb_0850.png test/kitchen_0042/depth_0850.png test/kitchen_0042/filled_0850.png
374
+ test/kitchen_0042/rgb_0851.png test/kitchen_0042/depth_0851.png test/kitchen_0042/filled_0851.png
375
+ test/kitchen_0042/rgb_0852.png test/kitchen_0042/depth_0852.png test/kitchen_0042/filled_0852.png
376
+ test/kitchen_0044/rgb_0857.png test/kitchen_0044/depth_0857.png test/kitchen_0044/filled_0857.png
377
+ test/kitchen_0044/rgb_0858.png test/kitchen_0044/depth_0858.png test/kitchen_0044/filled_0858.png
378
+ test/kitchen_0044/rgb_0859.png test/kitchen_0044/depth_0859.png test/kitchen_0044/filled_0859.png
379
+ test/kitchen_0044/rgb_0860.png test/kitchen_0044/depth_0860.png test/kitchen_0044/filled_0860.png
380
+ test/kitchen_0044/rgb_0861.png test/kitchen_0044/depth_0861.png test/kitchen_0044/filled_0861.png
381
+ test/kitchen_0044/rgb_0862.png test/kitchen_0044/depth_0862.png test/kitchen_0044/filled_0862.png
382
+ test/kitchen_0046/rgb_0869.png test/kitchen_0046/depth_0869.png test/kitchen_0046/filled_0869.png
383
+ test/kitchen_0046/rgb_0870.png test/kitchen_0046/depth_0870.png test/kitchen_0046/filled_0870.png
384
+ test/kitchen_0046/rgb_0871.png test/kitchen_0046/depth_0871.png test/kitchen_0046/filled_0871.png
385
+ test/kitchen_0054/rgb_0906.png test/kitchen_0054/depth_0906.png test/kitchen_0054/filled_0906.png
386
+ test/kitchen_0054/rgb_0907.png test/kitchen_0054/depth_0907.png test/kitchen_0054/filled_0907.png
387
+ test/kitchen_0054/rgb_0908.png test/kitchen_0054/depth_0908.png test/kitchen_0054/filled_0908.png
388
+ test/bedroom_0027/rgb_0917.png test/bedroom_0027/depth_0917.png test/bedroom_0027/filled_0917.png
389
+ test/bedroom_0027/rgb_0918.png test/bedroom_0027/depth_0918.png test/bedroom_0027/filled_0918.png
390
+ test/bedroom_0027/rgb_0919.png test/bedroom_0027/depth_0919.png test/bedroom_0027/filled_0919.png
391
+ test/bedroom_0030/rgb_0926.png test/bedroom_0030/depth_0926.png test/bedroom_0030/filled_0926.png
392
+ test/bedroom_0030/rgb_0927.png test/bedroom_0030/depth_0927.png test/bedroom_0030/filled_0927.png
393
+ test/bedroom_0030/rgb_0928.png test/bedroom_0030/depth_0928.png test/bedroom_0030/filled_0928.png
394
+ test/bedroom_0032/rgb_0932.png test/bedroom_0032/depth_0932.png test/bedroom_0032/filled_0932.png
395
+ test/bedroom_0032/rgb_0933.png test/bedroom_0032/depth_0933.png test/bedroom_0032/filled_0933.png
396
+ test/bedroom_0032/rgb_0934.png test/bedroom_0032/depth_0934.png test/bedroom_0032/filled_0934.png
397
+ test/bedroom_0032/rgb_0935.png test/bedroom_0032/depth_0935.png test/bedroom_0032/filled_0935.png
398
+ test/bedroom_0037/rgb_0945.png test/bedroom_0037/depth_0945.png test/bedroom_0037/filled_0945.png
399
+ test/bedroom_0037/rgb_0946.png test/bedroom_0037/depth_0946.png test/bedroom_0037/filled_0946.png
400
+ test/bedroom_0037/rgb_0947.png test/bedroom_0037/depth_0947.png test/bedroom_0037/filled_0947.png
401
+ test/bedroom_0043/rgb_0959.png test/bedroom_0043/depth_0959.png test/bedroom_0043/filled_0959.png
402
+ test/bedroom_0043/rgb_0960.png test/bedroom_0043/depth_0960.png test/bedroom_0043/filled_0960.png
403
+ test/bedroom_0044/rgb_0961.png test/bedroom_0044/depth_0961.png test/bedroom_0044/filled_0961.png
404
+ test/bedroom_0044/rgb_0962.png test/bedroom_0044/depth_0962.png test/bedroom_0044/filled_0962.png
405
+ test/bedroom_0046/rgb_0965.png test/bedroom_0046/depth_0965.png test/bedroom_0046/filled_0965.png
406
+ test/bedroom_0046/rgb_0966.png test/bedroom_0046/depth_0966.png test/bedroom_0046/filled_0966.png
407
+ test/bedroom_0046/rgb_0967.png test/bedroom_0046/depth_0967.png test/bedroom_0046/filled_0967.png
408
+ test/bedroom_0048/rgb_0970.png test/bedroom_0048/depth_0970.png test/bedroom_0048/filled_0970.png
409
+ test/bedroom_0048/rgb_0971.png test/bedroom_0048/depth_0971.png test/bedroom_0048/filled_0971.png
410
+ test/bedroom_0048/rgb_0972.png test/bedroom_0048/depth_0972.png test/bedroom_0048/filled_0972.png
411
+ test/bedroom_0048/rgb_0973.png test/bedroom_0048/depth_0973.png test/bedroom_0048/filled_0973.png
412
+ test/bedroom_0048/rgb_0974.png test/bedroom_0048/depth_0974.png test/bedroom_0048/filled_0974.png
413
+ test/bedroom_0049/rgb_0975.png test/bedroom_0049/depth_0975.png test/bedroom_0049/filled_0975.png
414
+ test/bedroom_0049/rgb_0976.png test/bedroom_0049/depth_0976.png test/bedroom_0049/filled_0976.png
415
+ test/bedroom_0049/rgb_0977.png test/bedroom_0049/depth_0977.png test/bedroom_0049/filled_0977.png
416
+ test/bedroom_0054/rgb_0991.png test/bedroom_0054/depth_0991.png test/bedroom_0054/filled_0991.png
417
+ test/bedroom_0054/rgb_0992.png test/bedroom_0054/depth_0992.png test/bedroom_0054/filled_0992.png
418
+ test/bedroom_0054/rgb_0993.png test/bedroom_0054/depth_0993.png test/bedroom_0054/filled_0993.png
419
+ test/bedroom_0055/rgb_0994.png test/bedroom_0055/depth_0994.png test/bedroom_0055/filled_0994.png
420
+ test/bedroom_0055/rgb_0995.png test/bedroom_0055/depth_0995.png test/bedroom_0055/filled_0995.png
421
+ test/bedroom_0058/rgb_1001.png test/bedroom_0058/depth_1001.png test/bedroom_0058/filled_1001.png
422
+ test/bedroom_0058/rgb_1002.png test/bedroom_0058/depth_1002.png test/bedroom_0058/filled_1002.png
423
+ test/bedroom_0058/rgb_1003.png test/bedroom_0058/depth_1003.png test/bedroom_0058/filled_1003.png
424
+ test/bedroom_0058/rgb_1004.png test/bedroom_0058/depth_1004.png test/bedroom_0058/filled_1004.png
425
+ test/bedroom_0061/rgb_1010.png test/bedroom_0061/depth_1010.png test/bedroom_0061/filled_1010.png
426
+ test/bedroom_0061/rgb_1011.png test/bedroom_0061/depth_1011.png test/bedroom_0061/filled_1011.png
427
+ test/bedroom_0061/rgb_1012.png test/bedroom_0061/depth_1012.png test/bedroom_0061/filled_1012.png
428
+ test/bedroom_0064/rgb_1021.png test/bedroom_0064/depth_1021.png test/bedroom_0064/filled_1021.png
429
+ test/bedroom_0064/rgb_1022.png test/bedroom_0064/depth_1022.png test/bedroom_0064/filled_1022.png
430
+ test/bedroom_0064/rgb_1023.png test/bedroom_0064/depth_1023.png test/bedroom_0064/filled_1023.png
431
+ test/bedroom_0068/rgb_1032.png test/bedroom_0068/depth_1032.png test/bedroom_0068/filled_1032.png
432
+ test/bedroom_0068/rgb_1033.png test/bedroom_0068/depth_1033.png test/bedroom_0068/filled_1033.png
433
+ test/bedroom_0068/rgb_1034.png test/bedroom_0068/depth_1034.png test/bedroom_0068/filled_1034.png
434
+ test/bedroom_0070/rgb_1038.png test/bedroom_0070/depth_1038.png test/bedroom_0070/filled_1038.png
435
+ test/bedroom_0070/rgb_1039.png test/bedroom_0070/depth_1039.png test/bedroom_0070/filled_1039.png
436
+ test/bedroom_0073/rgb_1048.png test/bedroom_0073/depth_1048.png test/bedroom_0073/filled_1048.png
437
+ test/bedroom_0073/rgb_1049.png test/bedroom_0073/depth_1049.png test/bedroom_0073/filled_1049.png
438
+ test/bedroom_0075/rgb_1052.png test/bedroom_0075/depth_1052.png test/bedroom_0075/filled_1052.png
439
+ test/bedroom_0075/rgb_1053.png test/bedroom_0075/depth_1053.png test/bedroom_0075/filled_1053.png
440
+ test/bedroom_0077/rgb_1057.png test/bedroom_0077/depth_1057.png test/bedroom_0077/filled_1057.png
441
+ test/bedroom_0077/rgb_1058.png test/bedroom_0077/depth_1058.png test/bedroom_0077/filled_1058.png
442
+ test/bedroom_0083/rgb_1075.png test/bedroom_0083/depth_1075.png test/bedroom_0083/filled_1075.png
443
+ test/bedroom_0083/rgb_1076.png test/bedroom_0083/depth_1076.png test/bedroom_0083/filled_1076.png
444
+ test/bedroom_0084/rgb_1077.png test/bedroom_0084/depth_1077.png test/bedroom_0084/filled_1077.png
445
+ test/bedroom_0084/rgb_1078.png test/bedroom_0084/depth_1078.png test/bedroom_0084/filled_1078.png
446
+ test/bedroom_0084/rgb_1079.png test/bedroom_0084/depth_1079.png test/bedroom_0084/filled_1079.png
447
+ test/bedroom_0084/rgb_1080.png test/bedroom_0084/depth_1080.png test/bedroom_0084/filled_1080.png
448
+ test/bedroom_0085/rgb_1081.png test/bedroom_0085/depth_1081.png test/bedroom_0085/filled_1081.png
449
+ test/bedroom_0085/rgb_1082.png test/bedroom_0085/depth_1082.png test/bedroom_0085/filled_1082.png
450
+ test/bedroom_0085/rgb_1083.png test/bedroom_0085/depth_1083.png test/bedroom_0085/filled_1083.png
451
+ test/bedroom_0085/rgb_1084.png test/bedroom_0085/depth_1084.png test/bedroom_0085/filled_1084.png
452
+ test/bedroom_0087/rgb_1088.png test/bedroom_0087/depth_1088.png test/bedroom_0087/filled_1088.png
453
+ test/bedroom_0087/rgb_1089.png test/bedroom_0087/depth_1089.png test/bedroom_0087/filled_1089.png
454
+ test/bedroom_0087/rgb_1090.png test/bedroom_0087/depth_1090.png test/bedroom_0087/filled_1090.png
455
+ test/bedroom_0088/rgb_1091.png test/bedroom_0088/depth_1091.png test/bedroom_0088/filled_1091.png
456
+ test/bedroom_0088/rgb_1092.png test/bedroom_0088/depth_1092.png test/bedroom_0088/filled_1092.png
457
+ test/bedroom_0088/rgb_1093.png test/bedroom_0088/depth_1093.png test/bedroom_0088/filled_1093.png
458
+ test/bedroom_0089/rgb_1094.png test/bedroom_0089/depth_1094.png test/bedroom_0089/filled_1094.png
459
+ test/bedroom_0089/rgb_1095.png test/bedroom_0089/depth_1095.png test/bedroom_0089/filled_1095.png
460
+ test/bedroom_0089/rgb_1096.png test/bedroom_0089/depth_1096.png test/bedroom_0089/filled_1096.png
461
+ test/bedroom_0091/rgb_1098.png test/bedroom_0091/depth_1098.png test/bedroom_0091/filled_1098.png
462
+ test/bedroom_0091/rgb_1099.png test/bedroom_0091/depth_1099.png test/bedroom_0091/filled_1099.png
463
+ test/bedroom_0092/rgb_1100.png test/bedroom_0092/depth_1100.png test/bedroom_0092/filled_1100.png
464
+ test/bedroom_0092/rgb_1101.png test/bedroom_0092/depth_1101.png test/bedroom_0092/filled_1101.png
465
+ test/bedroom_0092/rgb_1102.png test/bedroom_0092/depth_1102.png test/bedroom_0092/filled_1102.png
466
+ test/bedroom_0093/rgb_1103.png test/bedroom_0093/depth_1103.png test/bedroom_0093/filled_1103.png
467
+ test/bedroom_0093/rgb_1104.png test/bedroom_0093/depth_1104.png test/bedroom_0093/filled_1104.png
468
+ test/bedroom_0095/rgb_1106.png test/bedroom_0095/depth_1106.png test/bedroom_0095/filled_1106.png
469
+ test/bedroom_0095/rgb_1107.png test/bedroom_0095/depth_1107.png test/bedroom_0095/filled_1107.png
470
+ test/bedroom_0095/rgb_1108.png test/bedroom_0095/depth_1108.png test/bedroom_0095/filled_1108.png
471
+ test/bedroom_0095/rgb_1109.png test/bedroom_0095/depth_1109.png test/bedroom_0095/filled_1109.png
472
+ test/bedroom_0099/rgb_1117.png test/bedroom_0099/depth_1117.png test/bedroom_0099/filled_1117.png
473
+ test/bedroom_0099/rgb_1118.png test/bedroom_0099/depth_1118.png test/bedroom_0099/filled_1118.png
474
+ test/bedroom_0099/rgb_1119.png test/bedroom_0099/depth_1119.png test/bedroom_0099/filled_1119.png
475
+ test/bedroom_0101/rgb_1123.png test/bedroom_0101/depth_1123.png test/bedroom_0101/filled_1123.png
476
+ test/bedroom_0101/rgb_1124.png test/bedroom_0101/depth_1124.png test/bedroom_0101/filled_1124.png
477
+ test/bedroom_0101/rgb_1125.png test/bedroom_0101/depth_1125.png test/bedroom_0101/filled_1125.png
478
+ test/bedroom_0101/rgb_1126.png test/bedroom_0101/depth_1126.png test/bedroom_0101/filled_1126.png
479
+ test/bedroom_0102/rgb_1127.png test/bedroom_0102/depth_1127.png test/bedroom_0102/filled_1127.png
480
+ test/bedroom_0102/rgb_1128.png test/bedroom_0102/depth_1128.png test/bedroom_0102/filled_1128.png
481
+ test/bedroom_0103/rgb_1129.png test/bedroom_0103/depth_1129.png test/bedroom_0103/filled_1129.png
482
+ test/bedroom_0103/rgb_1130.png test/bedroom_0103/depth_1130.png test/bedroom_0103/filled_1130.png
483
+ test/bedroom_0103/rgb_1131.png test/bedroom_0103/depth_1131.png test/bedroom_0103/filled_1131.png
484
+ test/bedroom_0105/rgb_1135.png test/bedroom_0105/depth_1135.png test/bedroom_0105/filled_1135.png
485
+ test/bedroom_0105/rgb_1136.png test/bedroom_0105/depth_1136.png test/bedroom_0105/filled_1136.png
486
+ test/bedroom_0108/rgb_1144.png test/bedroom_0108/depth_1144.png test/bedroom_0108/filled_1144.png
487
+ test/bedroom_0108/rgb_1145.png test/bedroom_0108/depth_1145.png test/bedroom_0108/filled_1145.png
488
+ test/bedroom_0108/rgb_1146.png test/bedroom_0108/depth_1146.png test/bedroom_0108/filled_1146.png
489
+ test/bedroom_0109/rgb_1147.png test/bedroom_0109/depth_1147.png test/bedroom_0109/filled_1147.png
490
+ test/bedroom_0109/rgb_1148.png test/bedroom_0109/depth_1148.png test/bedroom_0109/filled_1148.png
491
+ test/bedroom_0109/rgb_1149.png test/bedroom_0109/depth_1149.png test/bedroom_0109/filled_1149.png
492
+ test/bedroom_0110/rgb_1150.png test/bedroom_0110/depth_1150.png test/bedroom_0110/filled_1150.png
493
+ test/bedroom_0110/rgb_1151.png test/bedroom_0110/depth_1151.png test/bedroom_0110/filled_1151.png
494
+ test/bedroom_0110/rgb_1152.png test/bedroom_0110/depth_1152.png test/bedroom_0110/filled_1152.png
495
+ test/bedroom_0111/rgb_1153.png test/bedroom_0111/depth_1153.png test/bedroom_0111/filled_1153.png
496
+ test/bedroom_0111/rgb_1154.png test/bedroom_0111/depth_1154.png test/bedroom_0111/filled_1154.png
497
+ test/bedroom_0111/rgb_1155.png test/bedroom_0111/depth_1155.png test/bedroom_0111/filled_1155.png
498
+ test/bedroom_0112/rgb_1156.png test/bedroom_0112/depth_1156.png test/bedroom_0112/filled_1156.png
499
+ test/bedroom_0112/rgb_1157.png test/bedroom_0112/depth_1157.png test/bedroom_0112/filled_1157.png
500
+ test/bedroom_0112/rgb_1158.png test/bedroom_0112/depth_1158.png test/bedroom_0112/filled_1158.png
501
+ test/bedroom_0114/rgb_1162.png test/bedroom_0114/depth_1162.png test/bedroom_0114/filled_1162.png
502
+ test/bedroom_0114/rgb_1163.png test/bedroom_0114/depth_1163.png test/bedroom_0114/filled_1163.png
503
+ test/bedroom_0114/rgb_1164.png test/bedroom_0114/depth_1164.png test/bedroom_0114/filled_1164.png
504
+ test/bedroom_0115/rgb_1165.png test/bedroom_0115/depth_1165.png test/bedroom_0115/filled_1165.png
505
+ test/bedroom_0115/rgb_1166.png test/bedroom_0115/depth_1166.png test/bedroom_0115/filled_1166.png
506
+ test/bedroom_0115/rgb_1167.png test/bedroom_0115/depth_1167.png test/bedroom_0115/filled_1167.png
507
+ test/bedroom_0117/rgb_1170.png test/bedroom_0117/depth_1170.png test/bedroom_0117/filled_1170.png
508
+ test/bedroom_0117/rgb_1171.png test/bedroom_0117/depth_1171.png test/bedroom_0117/filled_1171.png
509
+ test/bedroom_0119/rgb_1174.png test/bedroom_0119/depth_1174.png test/bedroom_0119/filled_1174.png
510
+ test/bedroom_0119/rgb_1175.png test/bedroom_0119/depth_1175.png test/bedroom_0119/filled_1175.png
511
+ test/bedroom_0119/rgb_1176.png test/bedroom_0119/depth_1176.png test/bedroom_0119/filled_1176.png
512
+ test/bedroom_0121/rgb_1179.png test/bedroom_0121/depth_1179.png test/bedroom_0121/filled_1179.png
513
+ test/bedroom_0121/rgb_1180.png test/bedroom_0121/depth_1180.png test/bedroom_0121/filled_1180.png
514
+ test/bedroom_0122/rgb_1181.png test/bedroom_0122/depth_1181.png test/bedroom_0122/filled_1181.png
515
+ test/bedroom_0122/rgb_1182.png test/bedroom_0122/depth_1182.png test/bedroom_0122/filled_1182.png
516
+ test/bedroom_0123/rgb_1183.png test/bedroom_0123/depth_1183.png test/bedroom_0123/filled_1183.png
517
+ test/bedroom_0123/rgb_1184.png test/bedroom_0123/depth_1184.png test/bedroom_0123/filled_1184.png
518
+ test/bedroom_0127/rgb_1192.png test/bedroom_0127/depth_1192.png test/bedroom_0127/filled_1192.png
519
+ test/bedroom_0127/rgb_1193.png test/bedroom_0127/depth_1193.png test/bedroom_0127/filled_1193.png
520
+ test/bedroom_0127/rgb_1194.png test/bedroom_0127/depth_1194.png test/bedroom_0127/filled_1194.png
521
+ test/bedroom_0128/rgb_1195.png test/bedroom_0128/depth_1195.png test/bedroom_0128/filled_1195.png
522
+ test/bedroom_0128/rgb_1196.png test/bedroom_0128/depth_1196.png test/bedroom_0128/filled_1196.png
523
+ test/living_room_0025/rgb_1201.png test/living_room_0025/depth_1201.png test/living_room_0025/filled_1201.png
524
+ test/living_room_0025/rgb_1202.png test/living_room_0025/depth_1202.png test/living_room_0025/filled_1202.png
525
+ test/living_room_0025/rgb_1203.png test/living_room_0025/depth_1203.png test/living_room_0025/filled_1203.png
526
+ test/living_room_0026/rgb_1204.png test/living_room_0026/depth_1204.png test/living_room_0026/filled_1204.png
527
+ test/living_room_0026/rgb_1205.png test/living_room_0026/depth_1205.png test/living_room_0026/filled_1205.png
528
+ test/living_room_0027/rgb_1206.png test/living_room_0027/depth_1206.png test/living_room_0027/filled_1206.png
529
+ test/living_room_0027/rgb_1207.png test/living_room_0027/depth_1207.png test/living_room_0027/filled_1207.png
530
+ test/living_room_0027/rgb_1208.png test/living_room_0027/depth_1208.png test/living_room_0027/filled_1208.png
531
+ test/living_room_0028/rgb_1209.png test/living_room_0028/depth_1209.png test/living_room_0028/filled_1209.png
532
+ test/living_room_0028/rgb_1210.png test/living_room_0028/depth_1210.png test/living_room_0028/filled_1210.png
533
+ test/living_room_0028/rgb_1211.png test/living_room_0028/depth_1211.png test/living_room_0028/filled_1211.png
534
+ test/living_room_0028/rgb_1212.png test/living_room_0028/depth_1212.png test/living_room_0028/filled_1212.png
535
+ test/living_room_0030/rgb_1216.png test/living_room_0030/depth_1216.png test/living_room_0030/filled_1216.png
536
+ test/living_room_0030/rgb_1217.png test/living_room_0030/depth_1217.png test/living_room_0030/filled_1217.png
537
+ test/living_room_0031/rgb_1218.png test/living_room_0031/depth_1218.png test/living_room_0031/filled_1218.png
538
+ test/living_room_0031/rgb_1219.png test/living_room_0031/depth_1219.png test/living_room_0031/filled_1219.png
539
+ test/living_room_0031/rgb_1220.png test/living_room_0031/depth_1220.png test/living_room_0031/filled_1220.png
540
+ test/living_room_0034/rgb_1226.png test/living_room_0034/depth_1226.png test/living_room_0034/filled_1226.png
541
+ test/living_room_0034/rgb_1227.png test/living_room_0034/depth_1227.png test/living_room_0034/filled_1227.png
542
+ test/living_room_0034/rgb_1228.png test/living_room_0034/depth_1228.png test/living_room_0034/filled_1228.png
543
+ test/living_room_0034/rgb_1229.png test/living_room_0034/depth_1229.png test/living_room_0034/filled_1229.png
544
+ test/living_room_0034/rgb_1230.png test/living_room_0034/depth_1230.png test/living_room_0034/filled_1230.png
545
+ test/living_room_0036/rgb_1233.png test/living_room_0036/depth_1233.png test/living_room_0036/filled_1233.png
546
+ test/living_room_0036/rgb_1234.png test/living_room_0036/depth_1234.png test/living_room_0036/filled_1234.png
547
+ test/living_room_0036/rgb_1235.png test/living_room_0036/depth_1235.png test/living_room_0036/filled_1235.png
548
+ test/living_room_0041/rgb_1247.png test/living_room_0041/depth_1247.png test/living_room_0041/filled_1247.png
549
+ test/living_room_0041/rgb_1248.png test/living_room_0041/depth_1248.png test/living_room_0041/filled_1248.png
550
+ test/living_room_0041/rgb_1249.png test/living_room_0041/depth_1249.png test/living_room_0041/filled_1249.png
551
+ test/living_room_0041/rgb_1250.png test/living_room_0041/depth_1250.png test/living_room_0041/filled_1250.png
552
+ test/living_room_0043/rgb_1254.png test/living_room_0043/depth_1254.png test/living_room_0043/filled_1254.png
553
+ test/living_room_0043/rgb_1255.png test/living_room_0043/depth_1255.png test/living_room_0043/filled_1255.png
554
+ test/living_room_0043/rgb_1256.png test/living_room_0043/depth_1256.png test/living_room_0043/filled_1256.png
555
+ test/living_room_0043/rgb_1257.png test/living_room_0043/depth_1257.png test/living_room_0043/filled_1257.png
556
+ test/living_room_0044/rgb_1258.png test/living_room_0044/depth_1258.png test/living_room_0044/filled_1258.png
557
+ test/living_room_0044/rgb_1259.png test/living_room_0044/depth_1259.png test/living_room_0044/filled_1259.png
558
+ test/living_room_0044/rgb_1260.png test/living_room_0044/depth_1260.png test/living_room_0044/filled_1260.png
559
+ test/living_room_0044/rgb_1261.png test/living_room_0044/depth_1261.png test/living_room_0044/filled_1261.png
560
+ test/living_room_0045/rgb_1262.png test/living_room_0045/depth_1262.png test/living_room_0045/filled_1262.png
561
+ test/living_room_0045/rgb_1263.png test/living_room_0045/depth_1263.png test/living_room_0045/filled_1263.png
562
+ test/living_room_0045/rgb_1264.png test/living_room_0045/depth_1264.png test/living_room_0045/filled_1264.png
563
+ test/living_room_0045/rgb_1265.png test/living_room_0045/depth_1265.png test/living_room_0045/filled_1265.png
564
+ test/living_room_0048/rgb_1275.png test/living_room_0048/depth_1275.png test/living_room_0048/filled_1275.png
565
+ test/living_room_0048/rgb_1276.png test/living_room_0048/depth_1276.png test/living_room_0048/filled_1276.png
566
+ test/living_room_0049/rgb_1277.png test/living_room_0049/depth_1277.png test/living_room_0049/filled_1277.png
567
+ test/living_room_0049/rgb_1278.png test/living_room_0049/depth_1278.png test/living_room_0049/filled_1278.png
568
+ test/living_room_0049/rgb_1279.png test/living_room_0049/depth_1279.png test/living_room_0049/filled_1279.png
569
+ test/living_room_0049/rgb_1280.png test/living_room_0049/depth_1280.png test/living_room_0049/filled_1280.png
570
+ test/living_room_0051/rgb_1285.png test/living_room_0051/depth_1285.png test/living_room_0051/filled_1285.png
571
+ test/living_room_0051/rgb_1286.png test/living_room_0051/depth_1286.png test/living_room_0051/filled_1286.png
572
+ test/living_room_0051/rgb_1287.png test/living_room_0051/depth_1287.png test/living_room_0051/filled_1287.png
573
+ test/living_room_0051/rgb_1288.png test/living_room_0051/depth_1288.png test/living_room_0051/filled_1288.png
574
+ test/living_room_0052/rgb_1289.png test/living_room_0052/depth_1289.png test/living_room_0052/filled_1289.png
575
+ test/living_room_0052/rgb_1290.png test/living_room_0052/depth_1290.png test/living_room_0052/filled_1290.png
576
+ test/living_room_0053/rgb_1291.png test/living_room_0053/depth_1291.png test/living_room_0053/filled_1291.png
577
+ test/living_room_0053/rgb_1292.png test/living_room_0053/depth_1292.png test/living_room_0053/filled_1292.png
578
+ test/living_room_0053/rgb_1293.png test/living_room_0053/depth_1293.png test/living_room_0053/filled_1293.png
579
+ test/living_room_0054/rgb_1294.png test/living_room_0054/depth_1294.png test/living_room_0054/filled_1294.png
580
+ test/living_room_0054/rgb_1295.png test/living_room_0054/depth_1295.png test/living_room_0054/filled_1295.png
581
+ test/living_room_0056/rgb_1297.png test/living_room_0056/depth_1297.png test/living_room_0056/filled_1297.png
582
+ test/living_room_0057/rgb_1298.png test/living_room_0057/depth_1298.png test/living_room_0057/filled_1298.png
583
+ test/living_room_0057/rgb_1299.png test/living_room_0057/depth_1299.png test/living_room_0057/filled_1299.png
584
+ test/living_room_0059/rgb_1302.png test/living_room_0059/depth_1302.png test/living_room_0059/filled_1302.png
585
+ test/living_room_0059/rgb_1303.png test/living_room_0059/depth_1303.png test/living_room_0059/filled_1303.png
586
+ test/living_room_0059/rgb_1304.png test/living_room_0059/depth_1304.png test/living_room_0059/filled_1304.png
587
+ test/living_room_0059/rgb_1305.png test/living_room_0059/depth_1305.png test/living_room_0059/filled_1305.png
588
+ test/living_room_0060/rgb_1306.png test/living_room_0060/depth_1306.png test/living_room_0060/filled_1306.png
589
+ test/living_room_0060/rgb_1307.png test/living_room_0060/depth_1307.png test/living_room_0060/filled_1307.png
590
+ test/living_room_0061/rgb_1308.png test/living_room_0061/depth_1308.png test/living_room_0061/filled_1308.png
591
+ test/living_room_0064/rgb_1314.png test/living_room_0064/depth_1314.png test/living_room_0064/filled_1314.png
592
+ test/living_room_0066/rgb_1315.png test/living_room_0066/depth_1315.png test/living_room_0066/filled_1315.png
593
+ test/living_room_0072/rgb_1329.png test/living_room_0072/depth_1329.png test/living_room_0072/filled_1329.png
594
+ test/living_room_0075/rgb_1330.png test/living_room_0075/depth_1330.png test/living_room_0075/filled_1330.png
595
+ test/living_room_0075/rgb_1331.png test/living_room_0075/depth_1331.png test/living_room_0075/filled_1331.png
596
+ test/living_room_0076/rgb_1332.png test/living_room_0076/depth_1332.png test/living_room_0076/filled_1332.png
597
+ test/living_room_0079/rgb_1335.png test/living_room_0079/depth_1335.png test/living_room_0079/filled_1335.png
598
+ test/living_room_0079/rgb_1336.png test/living_room_0079/depth_1336.png test/living_room_0079/filled_1336.png
599
+ test/living_room_0079/rgb_1337.png test/living_room_0079/depth_1337.png test/living_room_0079/filled_1337.png
600
+ test/living_room_0080/rgb_1338.png test/living_room_0080/depth_1338.png test/living_room_0080/filled_1338.png
601
+ test/living_room_0080/rgb_1339.png test/living_room_0080/depth_1339.png test/living_room_0080/filled_1339.png
602
+ test/living_room_0080/rgb_1340.png test/living_room_0080/depth_1340.png test/living_room_0080/filled_1340.png
603
+ test/dining_room_0003/rgb_1347.png test/dining_room_0003/depth_1347.png test/dining_room_0003/filled_1347.png
604
+ test/dining_room_0003/rgb_1348.png test/dining_room_0003/depth_1348.png test/dining_room_0003/filled_1348.png
605
+ test/dining_room_0003/rgb_1349.png test/dining_room_0003/depth_1349.png test/dining_room_0003/filled_1349.png
606
+ test/dining_room_0005/rgb_1353.png test/dining_room_0005/depth_1353.png test/dining_room_0005/filled_1353.png
607
+ test/dining_room_0005/rgb_1354.png test/dining_room_0005/depth_1354.png test/dining_room_0005/filled_1354.png
608
+ test/dining_room_0006/rgb_1355.png test/dining_room_0006/depth_1355.png test/dining_room_0006/filled_1355.png
609
+ test/dining_room_0006/rgb_1356.png test/dining_room_0006/depth_1356.png test/dining_room_0006/filled_1356.png
610
+ test/dining_room_0009/rgb_1364.png test/dining_room_0009/depth_1364.png test/dining_room_0009/filled_1364.png
611
+ test/dining_room_0009/rgb_1365.png test/dining_room_0009/depth_1365.png test/dining_room_0009/filled_1365.png
612
+ test/dining_room_0011/rgb_1368.png test/dining_room_0011/depth_1368.png test/dining_room_0011/filled_1368.png
613
+ test/dining_room_0011/rgb_1369.png test/dining_room_0011/depth_1369.png test/dining_room_0011/filled_1369.png
614
+ test/dining_room_0017/rgb_1384.png test/dining_room_0017/depth_1384.png test/dining_room_0017/filled_1384.png
615
+ test/dining_room_0017/rgb_1385.png test/dining_room_0017/depth_1385.png test/dining_room_0017/filled_1385.png
616
+ test/dining_room_0017/rgb_1386.png test/dining_room_0017/depth_1386.png test/dining_room_0017/filled_1386.png
617
+ test/dining_room_0018/rgb_1387.png test/dining_room_0018/depth_1387.png test/dining_room_0018/filled_1387.png
618
+ test/dining_room_0018/rgb_1388.png test/dining_room_0018/depth_1388.png test/dining_room_0018/filled_1388.png
619
+ test/dining_room_0018/rgb_1389.png test/dining_room_0018/depth_1389.png test/dining_room_0018/filled_1389.png
620
+ test/dining_room_0018/rgb_1390.png test/dining_room_0018/depth_1390.png test/dining_room_0018/filled_1390.png
621
+ test/dining_room_0018/rgb_1391.png test/dining_room_0018/depth_1391.png test/dining_room_0018/filled_1391.png
622
+ test/dining_room_0020/rgb_1394.png test/dining_room_0020/depth_1394.png test/dining_room_0020/filled_1394.png
623
+ test/dining_room_0020/rgb_1395.png test/dining_room_0020/depth_1395.png test/dining_room_0020/filled_1395.png
624
+ test/dining_room_0020/rgb_1396.png test/dining_room_0020/depth_1396.png test/dining_room_0020/filled_1396.png
625
+ test/dining_room_0021/rgb_1397.png test/dining_room_0021/depth_1397.png test/dining_room_0021/filled_1397.png
626
+ test/dining_room_0021/rgb_1398.png test/dining_room_0021/depth_1398.png test/dining_room_0021/filled_1398.png
627
+ test/dining_room_0021/rgb_1399.png test/dining_room_0021/depth_1399.png test/dining_room_0021/filled_1399.png
628
+ test/dining_room_0022/rgb_1400.png test/dining_room_0022/depth_1400.png test/dining_room_0022/filled_1400.png
629
+ test/dining_room_0022/rgb_1401.png test/dining_room_0022/depth_1401.png test/dining_room_0022/filled_1401.png
630
+ test/dining_room_0025/rgb_1407.png test/dining_room_0025/depth_1407.png test/dining_room_0025/filled_1407.png
631
+ test/dining_room_0025/rgb_1408.png test/dining_room_0025/depth_1408.png test/dining_room_0025/filled_1408.png
632
+ test/dining_room_0025/rgb_1409.png test/dining_room_0025/depth_1409.png test/dining_room_0025/filled_1409.png
633
+ test/dining_room_0025/rgb_1410.png test/dining_room_0025/depth_1410.png test/dining_room_0025/filled_1410.png
634
+ test/dining_room_0025/rgb_1411.png test/dining_room_0025/depth_1411.png test/dining_room_0025/filled_1411.png
635
+ test/dining_room_0026/rgb_1412.png test/dining_room_0026/depth_1412.png test/dining_room_0026/filled_1412.png
636
+ test/dining_room_0026/rgb_1413.png test/dining_room_0026/depth_1413.png test/dining_room_0026/filled_1413.png
637
+ test/dining_room_0026/rgb_1414.png test/dining_room_0026/depth_1414.png test/dining_room_0026/filled_1414.png
638
+ test/dining_room_0030/rgb_1421.png test/dining_room_0030/depth_1421.png test/dining_room_0030/filled_1421.png
639
+ test/dining_room_0030/rgb_1422.png test/dining_room_0030/depth_1422.png test/dining_room_0030/filled_1422.png
640
+ test/dining_room_0030/rgb_1423.png test/dining_room_0030/depth_1423.png test/dining_room_0030/filled_1423.png
641
+ test/dining_room_0030/rgb_1424.png test/dining_room_0030/depth_1424.png test/dining_room_0030/filled_1424.png
642
+ test/dining_room_0032/rgb_1430.png test/dining_room_0032/depth_1430.png test/dining_room_0032/filled_1430.png
643
+ test/dining_room_0032/rgb_1431.png test/dining_room_0032/depth_1431.png test/dining_room_0032/filled_1431.png
644
+ test/dining_room_0032/rgb_1432.png test/dining_room_0032/depth_1432.png test/dining_room_0032/filled_1432.png
645
+ test/dining_room_0032/rgb_1433.png test/dining_room_0032/depth_1433.png test/dining_room_0032/filled_1433.png
646
+ test/dining_room_0035/rgb_1441.png test/dining_room_0035/depth_1441.png test/dining_room_0035/filled_1441.png
647
+ test/dining_room_0035/rgb_1442.png test/dining_room_0035/depth_1442.png test/dining_room_0035/filled_1442.png
648
+ test/dining_room_0035/rgb_1443.png test/dining_room_0035/depth_1443.png test/dining_room_0035/filled_1443.png
649
+ test/dining_room_0036/rgb_1444.png test/dining_room_0036/depth_1444.png test/dining_room_0036/filled_1444.png
650
+ test/dining_room_0036/rgb_1445.png test/dining_room_0036/depth_1445.png test/dining_room_0036/filled_1445.png
651
+ test/dining_room_0036/rgb_1446.png test/dining_room_0036/depth_1446.png test/dining_room_0036/filled_1446.png
652
+ test/dining_room_0036/rgb_1447.png test/dining_room_0036/depth_1447.png test/dining_room_0036/filled_1447.png
653
+ test/dining_room_0036/rgb_1448.png test/dining_room_0036/depth_1448.png test/dining_room_0036/filled_1448.png
654
+ test/dining_room_0036/rgb_1449.png test/dining_room_0036/depth_1449.png test/dining_room_0036/filled_1449.png
Lotus-2/datasets/eval/depth/data_split/nyu/labeled/filename_list_train.txt ADDED
@@ -0,0 +1,795 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ train/office_0003/rgb_0003.png train/office_0003/depth_0003.png train/office_0003/filled_0003.png
2
+ train/office_0003/rgb_0004.png train/office_0003/depth_0004.png train/office_0003/filled_0004.png
3
+ train/office_0004/rgb_0005.png train/office_0004/depth_0005.png train/office_0004/filled_0005.png
4
+ train/office_0004/rgb_0006.png train/office_0004/depth_0006.png train/office_0004/filled_0006.png
5
+ train/office_0004/rgb_0007.png train/office_0004/depth_0007.png train/office_0004/filled_0007.png
6
+ train/office_0004/rgb_0008.png train/office_0004/depth_0008.png train/office_0004/filled_0008.png
7
+ train/office_0006/rgb_0010.png train/office_0006/depth_0010.png train/office_0006/filled_0010.png
8
+ train/office_0006/rgb_0011.png train/office_0006/depth_0011.png train/office_0006/filled_0011.png
9
+ train/office_0006/rgb_0012.png train/office_0006/depth_0012.png train/office_0006/filled_0012.png
10
+ train/office_0006/rgb_0013.png train/office_0006/depth_0013.png train/office_0006/filled_0013.png
11
+ train/office_0009/rgb_0019.png train/office_0009/depth_0019.png train/office_0009/filled_0019.png
12
+ train/office_0009/rgb_0020.png train/office_0009/depth_0020.png train/office_0009/filled_0020.png
13
+ train/office_0011/rgb_0022.png train/office_0011/depth_0022.png train/office_0011/filled_0022.png
14
+ train/office_0011/rgb_0023.png train/office_0011/depth_0023.png train/office_0011/filled_0023.png
15
+ train/office_0011/rgb_0024.png train/office_0011/depth_0024.png train/office_0011/filled_0024.png
16
+ train/office_0011/rgb_0025.png train/office_0011/depth_0025.png train/office_0011/filled_0025.png
17
+ train/office_0012/rgb_0026.png train/office_0012/depth_0026.png train/office_0012/filled_0026.png
18
+ train/office_0012/rgb_0027.png train/office_0012/depth_0027.png train/office_0012/filled_0027.png
19
+ train/bathroom_0002/rgb_0044.png train/bathroom_0002/depth_0044.png train/bathroom_0002/filled_0044.png
20
+ train/bathroom_0002/rgb_0045.png train/bathroom_0002/depth_0045.png train/bathroom_0002/filled_0045.png
21
+ train/bathroom_0005/rgb_0048.png train/bathroom_0005/depth_0048.png train/bathroom_0005/filled_0048.png
22
+ train/bathroom_0006/rgb_0049.png train/bathroom_0006/depth_0049.png train/bathroom_0006/filled_0049.png
23
+ train/living_room_0000/rgb_0050.png train/living_room_0000/depth_0050.png train/living_room_0000/filled_0050.png
24
+ train/living_room_0000/rgb_0051.png train/living_room_0000/depth_0051.png train/living_room_0000/filled_0051.png
25
+ train/living_room_0000/rgb_0052.png train/living_room_0000/depth_0052.png train/living_room_0000/filled_0052.png
26
+ train/living_room_0000/rgb_0053.png train/living_room_0000/depth_0053.png train/living_room_0000/filled_0053.png
27
+ train/living_room_0000/rgb_0054.png train/living_room_0000/depth_0054.png train/living_room_0000/filled_0054.png
28
+ train/living_room_0000/rgb_0055.png train/living_room_0000/depth_0055.png train/living_room_0000/filled_0055.png
29
+ train/bedroom_0012/rgb_0058.png train/bedroom_0012/depth_0058.png train/bedroom_0012/filled_0058.png
30
+ train/bedroom_0014/rgb_0064.png train/bedroom_0014/depth_0064.png train/bedroom_0014/filled_0064.png
31
+ train/bedroom_0014/rgb_0065.png train/bedroom_0014/depth_0065.png train/bedroom_0014/filled_0065.png
32
+ train/bedroom_0014/rgb_0066.png train/bedroom_0014/depth_0066.png train/bedroom_0014/filled_0066.png
33
+ train/bedroom_0015/rgb_0067.png train/bedroom_0015/depth_0067.png train/bedroom_0015/filled_0067.png
34
+ train/bedroom_0016/rgb_0068.png train/bedroom_0016/depth_0068.png train/bedroom_0016/filled_0068.png
35
+ train/bedroom_0016/rgb_0069.png train/bedroom_0016/depth_0069.png train/bedroom_0016/filled_0069.png
36
+ train/bedroom_0016/rgb_0070.png train/bedroom_0016/depth_0070.png train/bedroom_0016/filled_0070.png
37
+ train/bedroom_0016/rgb_0071.png train/bedroom_0016/depth_0071.png train/bedroom_0016/filled_0071.png
38
+ train/bedroom_0016/rgb_0072.png train/bedroom_0016/depth_0072.png train/bedroom_0016/filled_0072.png
39
+ train/bedroom_0017/rgb_0073.png train/bedroom_0017/depth_0073.png train/bedroom_0017/filled_0073.png
40
+ train/bedroom_0017/rgb_0074.png train/bedroom_0017/depth_0074.png train/bedroom_0017/filled_0074.png
41
+ train/bedroom_0017/rgb_0075.png train/bedroom_0017/depth_0075.png train/bedroom_0017/filled_0075.png
42
+ train/bedroom_0019/rgb_0080.png train/bedroom_0019/depth_0080.png train/bedroom_0019/filled_0080.png
43
+ train/bedroom_0019/rgb_0081.png train/bedroom_0019/depth_0081.png train/bedroom_0019/filled_0081.png
44
+ train/bedroom_0019/rgb_0082.png train/bedroom_0019/depth_0082.png train/bedroom_0019/filled_0082.png
45
+ train/bedroom_0019/rgb_0083.png train/bedroom_0019/depth_0083.png train/bedroom_0019/filled_0083.png
46
+ train/bookstore_0002/rgb_0092.png train/bookstore_0002/depth_0092.png train/bookstore_0002/filled_0092.png
47
+ train/bookstore_0002/rgb_0093.png train/bookstore_0002/depth_0093.png train/bookstore_0002/filled_0093.png
48
+ train/bookstore_0002/rgb_0094.png train/bookstore_0002/depth_0094.png train/bookstore_0002/filled_0094.png
49
+ train/bookstore_0002/rgb_0095.png train/bookstore_0002/depth_0095.png train/bookstore_0002/filled_0095.png
50
+ train/bookstore_0002/rgb_0096.png train/bookstore_0002/depth_0096.png train/bookstore_0002/filled_0096.png
51
+ train/bookstore_0002/rgb_0097.png train/bookstore_0002/depth_0097.png train/bookstore_0002/filled_0097.png
52
+ train/bookstore_0002/rgb_0098.png train/bookstore_0002/depth_0098.png train/bookstore_0002/filled_0098.png
53
+ train/bookstore_0002/rgb_0099.png train/bookstore_0002/depth_0099.png train/bookstore_0002/filled_0099.png
54
+ train/bookstore_0002/rgb_0100.png train/bookstore_0002/depth_0100.png train/bookstore_0002/filled_0100.png
55
+ train/bookstore_0002/rgb_0101.png train/bookstore_0002/depth_0101.png train/bookstore_0002/filled_0101.png
56
+ train/bookstore_0002/rgb_0102.png train/bookstore_0002/depth_0102.png train/bookstore_0002/filled_0102.png
57
+ train/bookstore_0002/rgb_0103.png train/bookstore_0002/depth_0103.png train/bookstore_0002/filled_0103.png
58
+ train/bookstore_0000/rgb_0104.png train/bookstore_0000/depth_0104.png train/bookstore_0000/filled_0104.png
59
+ train/bookstore_0000/rgb_0105.png train/bookstore_0000/depth_0105.png train/bookstore_0000/filled_0105.png
60
+ train/bookstore_0000/rgb_0106.png train/bookstore_0000/depth_0106.png train/bookstore_0000/filled_0106.png
61
+ train/bookstore_0000/rgb_0107.png train/bookstore_0000/depth_0107.png train/bookstore_0000/filled_0107.png
62
+ train/bookstore_0000/rgb_0108.png train/bookstore_0000/depth_0108.png train/bookstore_0000/filled_0108.png
63
+ train/bookstore_0000/rgb_0109.png train/bookstore_0000/depth_0109.png train/bookstore_0000/filled_0109.png
64
+ train/bookstore_0000/rgb_0110.png train/bookstore_0000/depth_0110.png train/bookstore_0000/filled_0110.png
65
+ train/bookstore_0000/rgb_0111.png train/bookstore_0000/depth_0111.png train/bookstore_0000/filled_0111.png
66
+ train/bookstore_0000/rgb_0112.png train/bookstore_0000/depth_0112.png train/bookstore_0000/filled_0112.png
67
+ train/bookstore_0000/rgb_0113.png train/bookstore_0000/depth_0113.png train/bookstore_0000/filled_0113.png
68
+ train/bookstore_0002/rgb_0114.png train/bookstore_0002/depth_0114.png train/bookstore_0002/filled_0114.png
69
+ train/bookstore_0002/rgb_0115.png train/bookstore_0002/depth_0115.png train/bookstore_0002/filled_0115.png
70
+ train/bookstore_0002/rgb_0116.png train/bookstore_0002/depth_0116.png train/bookstore_0002/filled_0116.png
71
+ train/cafe_0001/rgb_0120.png train/cafe_0001/depth_0120.png train/cafe_0001/filled_0120.png
72
+ train/cafe_0001/rgb_0121.png train/cafe_0001/depth_0121.png train/cafe_0001/filled_0121.png
73
+ train/cafe_0001/rgb_0122.png train/cafe_0001/depth_0122.png train/cafe_0001/filled_0122.png
74
+ train/cafe_0001/rgb_0123.png train/cafe_0001/depth_0123.png train/cafe_0001/filled_0123.png
75
+ train/cafe_0001/rgb_0124.png train/cafe_0001/depth_0124.png train/cafe_0001/filled_0124.png
76
+ train/kitchen_0006/rgb_0130.png train/kitchen_0006/depth_0130.png train/kitchen_0006/filled_0130.png
77
+ train/kitchen_0008/rgb_0135.png train/kitchen_0008/depth_0135.png train/kitchen_0008/filled_0135.png
78
+ train/kitchen_0008/rgb_0136.png train/kitchen_0008/depth_0136.png train/kitchen_0008/filled_0136.png
79
+ train/kitchen_0010/rgb_0138.png train/kitchen_0010/depth_0138.png train/kitchen_0010/filled_0138.png
80
+ train/kitchen_0010/rgb_0139.png train/kitchen_0010/depth_0139.png train/kitchen_0010/filled_0139.png
81
+ train/kitchen_0010/rgb_0140.png train/kitchen_0010/depth_0140.png train/kitchen_0010/filled_0140.png
82
+ train/kitchen_0010/rgb_0141.png train/kitchen_0010/depth_0141.png train/kitchen_0010/filled_0141.png
83
+ train/kitchen_0011/rgb_0142.png train/kitchen_0011/depth_0142.png train/kitchen_0011/filled_0142.png
84
+ train/kitchen_0011/rgb_0143.png train/kitchen_0011/depth_0143.png train/kitchen_0011/filled_0143.png
85
+ train/kitchen_0011/rgb_0144.png train/kitchen_0011/depth_0144.png train/kitchen_0011/filled_0144.png
86
+ train/kitchen_0011/rgb_0145.png train/kitchen_0011/depth_0145.png train/kitchen_0011/filled_0145.png
87
+ train/living_room_0004/rgb_0146.png train/living_room_0004/depth_0146.png train/living_room_0004/filled_0146.png
88
+ train/living_room_0004/rgb_0147.png train/living_room_0004/depth_0147.png train/living_room_0004/filled_0147.png
89
+ train/living_room_0004/rgb_0148.png train/living_room_0004/depth_0148.png train/living_room_0004/filled_0148.png
90
+ train/living_room_0004/rgb_0149.png train/living_room_0004/depth_0149.png train/living_room_0004/filled_0149.png
91
+ train/living_room_0004/rgb_0150.png train/living_room_0004/depth_0150.png train/living_room_0004/filled_0150.png
92
+ train/living_room_0005/rgb_0151.png train/living_room_0005/depth_0151.png train/living_room_0005/filled_0151.png
93
+ train/living_room_0006/rgb_0152.png train/living_room_0006/depth_0152.png train/living_room_0006/filled_0152.png
94
+ train/living_room_0010/rgb_0156.png train/living_room_0010/depth_0156.png train/living_room_0010/filled_0156.png
95
+ train/living_room_0010/rgb_0157.png train/living_room_0010/depth_0157.png train/living_room_0010/filled_0157.png
96
+ train/living_room_0010/rgb_0158.png train/living_room_0010/depth_0158.png train/living_room_0010/filled_0158.png
97
+ train/living_room_0010/rgb_0159.png train/living_room_0010/depth_0159.png train/living_room_0010/filled_0159.png
98
+ train/living_room_0011/rgb_0160.png train/living_room_0011/depth_0160.png train/living_room_0011/filled_0160.png
99
+ train/living_room_0011/rgb_0161.png train/living_room_0011/depth_0161.png train/living_room_0011/filled_0161.png
100
+ train/living_room_0011/rgb_0162.png train/living_room_0011/depth_0162.png train/living_room_0011/filled_0162.png
101
+ train/living_room_0011/rgb_0163.png train/living_room_0011/depth_0163.png train/living_room_0011/filled_0163.png
102
+ train/living_room_0012/rgb_0164.png train/living_room_0012/depth_0164.png train/living_room_0012/filled_0164.png
103
+ train/living_room_0012/rgb_0165.png train/living_room_0012/depth_0165.png train/living_room_0012/filled_0165.png
104
+ train/living_room_0012/rgb_0166.png train/living_room_0012/depth_0166.png train/living_room_0012/filled_0166.png
105
+ train/bathroom_0001/rgb_0170.png train/bathroom_0001/depth_0170.png train/bathroom_0001/filled_0170.png
106
+ train/bedroom_0004/rgb_0177.png train/bedroom_0004/depth_0177.png train/bedroom_0004/filled_0177.png
107
+ train/bedroom_0004/rgb_0178.png train/bedroom_0004/depth_0178.png train/bedroom_0004/filled_0178.png
108
+ train/bedroom_0004/rgb_0179.png train/bedroom_0004/depth_0179.png train/bedroom_0004/filled_0179.png
109
+ train/kitchen_0003/rgb_0203.png train/kitchen_0003/depth_0203.png train/kitchen_0003/filled_0203.png
110
+ train/kitchen_0003/rgb_0204.png train/kitchen_0003/depth_0204.png train/kitchen_0003/filled_0204.png
111
+ train/kitchen_0003/rgb_0205.png train/kitchen_0003/depth_0205.png train/kitchen_0003/filled_0205.png
112
+ train/kitchen_0003/rgb_0206.png train/kitchen_0003/depth_0206.png train/kitchen_0003/filled_0206.png
113
+ train/office_0000/rgb_0213.png train/office_0000/depth_0213.png train/office_0000/filled_0213.png
114
+ train/office_0000/rgb_0214.png train/office_0000/depth_0214.png train/office_0000/filled_0214.png
115
+ train/office_0000/rgb_0215.png train/office_0000/depth_0215.png train/office_0000/filled_0215.png
116
+ train/office_0000/rgb_0216.png train/office_0000/depth_0216.png train/office_0000/filled_0216.png
117
+ train/bedroom_0020/rgb_0217.png train/bedroom_0020/depth_0217.png train/bedroom_0020/filled_0217.png
118
+ train/bedroom_0020/rgb_0218.png train/bedroom_0020/depth_0218.png train/bedroom_0020/filled_0218.png
119
+ train/bedroom_0021/rgb_0219.png train/bedroom_0021/depth_0219.png train/bedroom_0021/filled_0219.png
120
+ train/furniture_store_0001/rgb_0223.png train/furniture_store_0001/depth_0223.png train/furniture_store_0001/filled_0223.png
121
+ train/furniture_store_0001/rgb_0224.png train/furniture_store_0001/depth_0224.png train/furniture_store_0001/filled_0224.png
122
+ train/furniture_store_0001/rgb_0225.png train/furniture_store_0001/depth_0225.png train/furniture_store_0001/filled_0225.png
123
+ train/furniture_store_0001/rgb_0226.png train/furniture_store_0001/depth_0226.png train/furniture_store_0001/filled_0226.png
124
+ train/furniture_store_0001/rgb_0227.png train/furniture_store_0001/depth_0227.png train/furniture_store_0001/filled_0227.png
125
+ train/furniture_store_0001/rgb_0228.png train/furniture_store_0001/depth_0228.png train/furniture_store_0001/filled_0228.png
126
+ train/furniture_store_0001/rgb_0229.png train/furniture_store_0001/depth_0229.png train/furniture_store_0001/filled_0229.png
127
+ train/furniture_store_0001/rgb_0230.png train/furniture_store_0001/depth_0230.png train/furniture_store_0001/filled_0230.png
128
+ train/furniture_store_0001/rgb_0231.png train/furniture_store_0001/depth_0231.png train/furniture_store_0001/filled_0231.png
129
+ train/furniture_store_0001/rgb_0232.png train/furniture_store_0001/depth_0232.png train/furniture_store_0001/filled_0232.png
130
+ train/furniture_store_0001/rgb_0233.png train/furniture_store_0001/depth_0233.png train/furniture_store_0001/filled_0233.png
131
+ train/furniture_store_0001/rgb_0234.png train/furniture_store_0001/depth_0234.png train/furniture_store_0001/filled_0234.png
132
+ train/furniture_store_0001/rgb_0235.png train/furniture_store_0001/depth_0235.png train/furniture_store_0001/filled_0235.png
133
+ train/furniture_store_0001/rgb_0236.png train/furniture_store_0001/depth_0236.png train/furniture_store_0001/filled_0236.png
134
+ train/furniture_store_0001/rgb_0237.png train/furniture_store_0001/depth_0237.png train/furniture_store_0001/filled_0237.png
135
+ train/furniture_store_0001/rgb_0238.png train/furniture_store_0001/depth_0238.png train/furniture_store_0001/filled_0238.png
136
+ train/furniture_store_0002/rgb_0239.png train/furniture_store_0002/depth_0239.png train/furniture_store_0002/filled_0239.png
137
+ train/furniture_store_0002/rgb_0240.png train/furniture_store_0002/depth_0240.png train/furniture_store_0002/filled_0240.png
138
+ train/furniture_store_0002/rgb_0241.png train/furniture_store_0002/depth_0241.png train/furniture_store_0002/filled_0241.png
139
+ train/furniture_store_0002/rgb_0242.png train/furniture_store_0002/depth_0242.png train/furniture_store_0002/filled_0242.png
140
+ train/furniture_store_0002/rgb_0243.png train/furniture_store_0002/depth_0243.png train/furniture_store_0002/filled_0243.png
141
+ train/furniture_store_0002/rgb_0244.png train/furniture_store_0002/depth_0244.png train/furniture_store_0002/filled_0244.png
142
+ train/furniture_store_0002/rgb_0245.png train/furniture_store_0002/depth_0245.png train/furniture_store_0002/filled_0245.png
143
+ train/furniture_store_0002/rgb_0246.png train/furniture_store_0002/depth_0246.png train/furniture_store_0002/filled_0246.png
144
+ train/furniture_store_0002/rgb_0247.png train/furniture_store_0002/depth_0247.png train/furniture_store_0002/filled_0247.png
145
+ train/furniture_store_0002/rgb_0248.png train/furniture_store_0002/depth_0248.png train/furniture_store_0002/filled_0248.png
146
+ train/furniture_store_0002/rgb_0249.png train/furniture_store_0002/depth_0249.png train/furniture_store_0002/filled_0249.png
147
+ train/kitchen_0016/rgb_0251.png train/kitchen_0016/depth_0251.png train/kitchen_0016/filled_0251.png
148
+ train/kitchen_0016/rgb_0252.png train/kitchen_0016/depth_0252.png train/kitchen_0016/filled_0252.png
149
+ train/kitchen_0017/rgb_0253.png train/kitchen_0017/depth_0253.png train/kitchen_0017/filled_0253.png
150
+ train/kitchen_0017/rgb_0254.png train/kitchen_0017/depth_0254.png train/kitchen_0017/filled_0254.png
151
+ train/living_room_0018/rgb_0255.png train/living_room_0018/depth_0255.png train/living_room_0018/filled_0255.png
152
+ train/living_room_0018/rgb_0256.png train/living_room_0018/depth_0256.png train/living_room_0018/filled_0256.png
153
+ train/living_room_0018/rgb_0257.png train/living_room_0018/depth_0257.png train/living_room_0018/filled_0257.png
154
+ train/living_room_0019/rgb_0258.png train/living_room_0019/depth_0258.png train/living_room_0019/filled_0258.png
155
+ train/living_room_0019/rgb_0259.png train/living_room_0019/depth_0259.png train/living_room_0019/filled_0259.png
156
+ train/living_room_0020/rgb_0260.png train/living_room_0020/depth_0260.png train/living_room_0020/filled_0260.png
157
+ train/living_room_0020/rgb_0261.png train/living_room_0020/depth_0261.png train/living_room_0020/filled_0261.png
158
+ train/living_room_0020/rgb_0262.png train/living_room_0020/depth_0262.png train/living_room_0020/filled_0262.png
159
+ train/living_room_0020/rgb_0263.png train/living_room_0020/depth_0263.png train/living_room_0020/filled_0263.png
160
+ train/living_room_0022/rgb_0265.png train/living_room_0022/depth_0265.png train/living_room_0022/filled_0265.png
161
+ train/living_room_0022/rgb_0266.png train/living_room_0022/depth_0266.png train/living_room_0022/filled_0266.png
162
+ train/living_room_0022/rgb_0267.png train/living_room_0022/depth_0267.png train/living_room_0022/filled_0267.png
163
+ train/living_room_0022/rgb_0268.png train/living_room_0022/depth_0268.png train/living_room_0022/filled_0268.png
164
+ train/living_room_0022/rgb_0269.png train/living_room_0022/depth_0269.png train/living_room_0022/filled_0269.png
165
+ train/living_room_0022/rgb_0270.png train/living_room_0022/depth_0270.png train/living_room_0022/filled_0270.png
166
+ train/study_room_0004/rgb_0274.png train/study_room_0004/depth_0274.png train/study_room_0004/filled_0274.png
167
+ train/study_room_0004/rgb_0275.png train/study_room_0004/depth_0275.png train/study_room_0004/filled_0275.png
168
+ train/study_room_0005/rgb_0276.png train/study_room_0005/depth_0276.png train/study_room_0005/filled_0276.png
169
+ train/study_room_0005/rgb_0277.png train/study_room_0005/depth_0277.png train/study_room_0005/filled_0277.png
170
+ train/study_room_0005/rgb_0278.png train/study_room_0005/depth_0278.png train/study_room_0005/filled_0278.png
171
+ train/classroom_0003/rgb_0286.png train/classroom_0003/depth_0286.png train/classroom_0003/filled_0286.png
172
+ train/classroom_0003/rgb_0287.png train/classroom_0003/depth_0287.png train/classroom_0003/filled_0287.png
173
+ train/classroom_0004/rgb_0288.png train/classroom_0004/depth_0288.png train/classroom_0004/filled_0288.png
174
+ train/classroom_0004/rgb_0289.png train/classroom_0004/depth_0289.png train/classroom_0004/filled_0289.png
175
+ train/classroom_0005/rgb_0290.png train/classroom_0005/depth_0290.png train/classroom_0005/filled_0290.png
176
+ train/classroom_0005/rgb_0291.png train/classroom_0005/depth_0291.png train/classroom_0005/filled_0291.png
177
+ train/classroom_0006/rgb_0292.png train/classroom_0006/depth_0292.png train/classroom_0006/filled_0292.png
178
+ train/classroom_0006/rgb_0293.png train/classroom_0006/depth_0293.png train/classroom_0006/filled_0293.png
179
+ train/classroom_0006/rgb_0294.png train/classroom_0006/depth_0294.png train/classroom_0006/filled_0294.png
180
+ train/classroom_0006/rgb_0295.png train/classroom_0006/depth_0295.png train/classroom_0006/filled_0295.png
181
+ train/classroom_0010/rgb_0303.png train/classroom_0010/depth_0303.png train/classroom_0010/filled_0303.png
182
+ train/classroom_0010/rgb_0304.png train/classroom_0010/depth_0304.png train/classroom_0010/filled_0304.png
183
+ train/classroom_0010/rgb_0305.png train/classroom_0010/depth_0305.png train/classroom_0010/filled_0305.png
184
+ train/classroom_0011/rgb_0306.png train/classroom_0011/depth_0306.png train/classroom_0011/filled_0306.png
185
+ train/classroom_0011/rgb_0307.png train/classroom_0011/depth_0307.png train/classroom_0011/filled_0307.png
186
+ train/classroom_0012/rgb_0308.png train/classroom_0012/depth_0308.png train/classroom_0012/filled_0308.png
187
+ train/classroom_0012/rgb_0309.png train/classroom_0012/depth_0309.png train/classroom_0012/filled_0309.png
188
+ train/classroom_0016/rgb_0313.png train/classroom_0016/depth_0313.png train/classroom_0016/filled_0313.png
189
+ train/classroom_0016/rgb_0314.png train/classroom_0016/depth_0314.png train/classroom_0016/filled_0314.png
190
+ train/classroom_0018/rgb_0318.png train/classroom_0018/depth_0318.png train/classroom_0018/filled_0318.png
191
+ train/classroom_0018/rgb_0319.png train/classroom_0018/depth_0319.png train/classroom_0018/filled_0319.png
192
+ train/classroom_0018/rgb_0320.png train/classroom_0018/depth_0320.png train/classroom_0018/filled_0320.png
193
+ train/classroom_0022/rgb_0321.png train/classroom_0022/depth_0321.png train/classroom_0022/filled_0321.png
194
+ train/classroom_0022/rgb_0322.png train/classroom_0022/depth_0322.png train/classroom_0022/filled_0322.png
195
+ train/classroom_0022/rgb_0323.png train/classroom_0022/depth_0323.png train/classroom_0022/filled_0323.png
196
+ train/classroom_0022/rgb_0324.png train/classroom_0022/depth_0324.png train/classroom_0022/filled_0324.png
197
+ train/computer_lab_0002/rgb_0336.png train/computer_lab_0002/depth_0336.png train/computer_lab_0002/filled_0336.png
198
+ train/computer_lab_0002/rgb_0337.png train/computer_lab_0002/depth_0337.png train/computer_lab_0002/filled_0337.png
199
+ train/computer_lab_0002/rgb_0338.png train/computer_lab_0002/depth_0338.png train/computer_lab_0002/filled_0338.png
200
+ train/conference_room_0001/rgb_0339.png train/conference_room_0001/depth_0339.png train/conference_room_0001/filled_0339.png
201
+ train/conference_room_0001/rgb_0340.png train/conference_room_0001/depth_0340.png train/conference_room_0001/filled_0340.png
202
+ train/conference_room_0001/rgb_0341.png train/conference_room_0001/depth_0341.png train/conference_room_0001/filled_0341.png
203
+ train/conference_room_0002/rgb_0342.png train/conference_room_0002/depth_0342.png train/conference_room_0002/filled_0342.png
204
+ train/conference_room_0002/rgb_0343.png train/conference_room_0002/depth_0343.png train/conference_room_0002/filled_0343.png
205
+ train/dinette_0001/rgb_0344.png train/dinette_0001/depth_0344.png train/dinette_0001/filled_0344.png
206
+ train/dinette_0001/rgb_0345.png train/dinette_0001/depth_0345.png train/dinette_0001/filled_0345.png
207
+ train/dinette_0001/rgb_0346.png train/dinette_0001/depth_0346.png train/dinette_0001/filled_0346.png
208
+ train/dinette_0001/rgb_0347.png train/dinette_0001/depth_0347.png train/dinette_0001/filled_0347.png
209
+ train/excercise_room_0001/rgb_0348.png train/excercise_room_0001/depth_0348.png train/excercise_room_0001/filled_0348.png
210
+ train/excercise_room_0001/rgb_0349.png train/excercise_room_0001/depth_0349.png train/excercise_room_0001/filled_0349.png
211
+ train/excercise_room_0001/rgb_0350.png train/excercise_room_0001/depth_0350.png train/excercise_room_0001/filled_0350.png
212
+ train/foyer_0002/rgb_0353.png train/foyer_0002/depth_0353.png train/foyer_0002/filled_0353.png
213
+ train/foyer_0002/rgb_0354.png train/foyer_0002/depth_0354.png train/foyer_0002/filled_0354.png
214
+ train/home_office_0004/rgb_0365.png train/home_office_0004/depth_0365.png train/home_office_0004/filled_0365.png
215
+ train/home_office_0004/rgb_0366.png train/home_office_0004/depth_0366.png train/home_office_0004/filled_0366.png
216
+ train/home_office_0004/rgb_0367.png train/home_office_0004/depth_0367.png train/home_office_0004/filled_0367.png
217
+ train/home_office_0005/rgb_0368.png train/home_office_0005/depth_0368.png train/home_office_0005/filled_0368.png
218
+ train/home_office_0005/rgb_0369.png train/home_office_0005/depth_0369.png train/home_office_0005/filled_0369.png
219
+ train/home_office_0005/rgb_0370.png train/home_office_0005/depth_0370.png train/home_office_0005/filled_0370.png
220
+ train/home_office_0005/rgb_0371.png train/home_office_0005/depth_0371.png train/home_office_0005/filled_0371.png
221
+ train/home_office_0006/rgb_0372.png train/home_office_0006/depth_0372.png train/home_office_0006/filled_0372.png
222
+ train/home_office_0006/rgb_0373.png train/home_office_0006/depth_0373.png train/home_office_0006/filled_0373.png
223
+ train/home_office_0006/rgb_0374.png train/home_office_0006/depth_0374.png train/home_office_0006/filled_0374.png
224
+ train/home_office_0006/rgb_0375.png train/home_office_0006/depth_0375.png train/home_office_0006/filled_0375.png
225
+ train/home_office_0006/rgb_0376.png train/home_office_0006/depth_0376.png train/home_office_0006/filled_0376.png
226
+ train/home_office_0007/rgb_0377.png train/home_office_0007/depth_0377.png train/home_office_0007/filled_0377.png
227
+ train/home_office_0007/rgb_0378.png train/home_office_0007/depth_0378.png train/home_office_0007/filled_0378.png
228
+ train/home_office_0007/rgb_0379.png train/home_office_0007/depth_0379.png train/home_office_0007/filled_0379.png
229
+ train/home_office_0008/rgb_0380.png train/home_office_0008/depth_0380.png train/home_office_0008/filled_0380.png
230
+ train/home_office_0008/rgb_0381.png train/home_office_0008/depth_0381.png train/home_office_0008/filled_0381.png
231
+ train/home_office_0008/rgb_0382.png train/home_office_0008/depth_0382.png train/home_office_0008/filled_0382.png
232
+ train/home_office_0008/rgb_0383.png train/home_office_0008/depth_0383.png train/home_office_0008/filled_0383.png
233
+ train/home_office_0011/rgb_0391.png train/home_office_0011/depth_0391.png train/home_office_0011/filled_0391.png
234
+ train/home_office_0011/rgb_0392.png train/home_office_0011/depth_0392.png train/home_office_0011/filled_0392.png
235
+ train/home_office_0011/rgb_0393.png train/home_office_0011/depth_0393.png train/home_office_0011/filled_0393.png
236
+ train/home_office_0011/rgb_0394.png train/home_office_0011/depth_0394.png train/home_office_0011/filled_0394.png
237
+ train/home_storage_0001/rgb_0398.png train/home_storage_0001/depth_0398.png train/home_storage_0001/filled_0398.png
238
+ train/home_storage_0001/rgb_0399.png train/home_storage_0001/depth_0399.png train/home_storage_0001/filled_0399.png
239
+ train/home_storage_0001/rgb_0400.png train/home_storage_0001/depth_0400.png train/home_storage_0001/filled_0400.png
240
+ train/home_storage_0001/rgb_0401.png train/home_storage_0001/depth_0401.png train/home_storage_0001/filled_0401.png
241
+ train/home_storage_0001/rgb_0402.png train/home_storage_0001/depth_0402.png train/home_storage_0001/filled_0402.png
242
+ train/indoor_balcony_0001/rgb_0403.png train/indoor_balcony_0001/depth_0403.png train/indoor_balcony_0001/filled_0403.png
243
+ train/indoor_balcony_0001/rgb_0404.png train/indoor_balcony_0001/depth_0404.png train/indoor_balcony_0001/filled_0404.png
244
+ train/laundry_room_0001/rgb_0405.png train/laundry_room_0001/depth_0405.png train/laundry_room_0001/filled_0405.png
245
+ train/laundry_room_0001/rgb_0406.png train/laundry_room_0001/depth_0406.png train/laundry_room_0001/filled_0406.png
246
+ train/laundry_room_0001/rgb_0407.png train/laundry_room_0001/depth_0407.png train/laundry_room_0001/filled_0407.png
247
+ train/office_kitchen_0001/rgb_0408.png train/office_kitchen_0001/depth_0408.png train/office_kitchen_0001/filled_0408.png
248
+ train/office_kitchen_0001/rgb_0409.png train/office_kitchen_0001/depth_0409.png train/office_kitchen_0001/filled_0409.png
249
+ train/office_kitchen_0001/rgb_0410.png train/office_kitchen_0001/depth_0410.png train/office_kitchen_0001/filled_0410.png
250
+ train/office_kitchen_0003/rgb_0415.png train/office_kitchen_0003/depth_0415.png train/office_kitchen_0003/filled_0415.png
251
+ train/office_kitchen_0003/rgb_0416.png train/office_kitchen_0003/depth_0416.png train/office_kitchen_0003/filled_0416.png
252
+ train/office_kitchen_0003/rgb_0417.png train/office_kitchen_0003/depth_0417.png train/office_kitchen_0003/filled_0417.png
253
+ train/playroom_0002/rgb_0418.png train/playroom_0002/depth_0418.png train/playroom_0002/filled_0418.png
254
+ train/playroom_0002/rgb_0419.png train/playroom_0002/depth_0419.png train/playroom_0002/filled_0419.png
255
+ train/playroom_0002/rgb_0420.png train/playroom_0002/depth_0420.png train/playroom_0002/filled_0420.png
256
+ train/playroom_0003/rgb_0421.png train/playroom_0003/depth_0421.png train/playroom_0003/filled_0421.png
257
+ train/playroom_0003/rgb_0422.png train/playroom_0003/depth_0422.png train/playroom_0003/filled_0422.png
258
+ train/playroom_0003/rgb_0423.png train/playroom_0003/depth_0423.png train/playroom_0003/filled_0423.png
259
+ train/playroom_0003/rgb_0424.png train/playroom_0003/depth_0424.png train/playroom_0003/filled_0424.png
260
+ train/playroom_0003/rgb_0425.png train/playroom_0003/depth_0425.png train/playroom_0003/filled_0425.png
261
+ train/playroom_0004/rgb_0426.png train/playroom_0004/depth_0426.png train/playroom_0004/filled_0426.png
262
+ train/playroom_0004/rgb_0427.png train/playroom_0004/depth_0427.png train/playroom_0004/filled_0427.png
263
+ train/playroom_0004/rgb_0428.png train/playroom_0004/depth_0428.png train/playroom_0004/filled_0428.png
264
+ train/playroom_0004/rgb_0429.png train/playroom_0004/depth_0429.png train/playroom_0004/filled_0429.png
265
+ train/playroom_0006/rgb_0436.png train/playroom_0006/depth_0436.png train/playroom_0006/filled_0436.png
266
+ train/playroom_0006/rgb_0437.png train/playroom_0006/depth_0437.png train/playroom_0006/filled_0437.png
267
+ train/playroom_0006/rgb_0438.png train/playroom_0006/depth_0438.png train/playroom_0006/filled_0438.png
268
+ train/playroom_0006/rgb_0439.png train/playroom_0006/depth_0439.png train/playroom_0006/filled_0439.png
269
+ train/playroom_0006/rgb_0440.png train/playroom_0006/depth_0440.png train/playroom_0006/filled_0440.png
270
+ train/printer_room_0001/rgb_0449.png train/printer_room_0001/depth_0449.png train/printer_room_0001/filled_0449.png
271
+ train/printer_room_0001/rgb_0450.png train/printer_room_0001/depth_0450.png train/printer_room_0001/filled_0450.png
272
+ train/printer_room_0001/rgb_0451.png train/printer_room_0001/depth_0451.png train/printer_room_0001/filled_0451.png
273
+ train/reception_room_0001/rgb_0452.png train/reception_room_0001/depth_0452.png train/reception_room_0001/filled_0452.png
274
+ train/reception_room_0001/rgb_0453.png train/reception_room_0001/depth_0453.png train/reception_room_0001/filled_0453.png
275
+ train/reception_room_0001/rgb_0454.png train/reception_room_0001/depth_0454.png train/reception_room_0001/filled_0454.png
276
+ train/reception_room_0001/rgb_0455.png train/reception_room_0001/depth_0455.png train/reception_room_0001/filled_0455.png
277
+ train/reception_room_0001/rgb_0456.png train/reception_room_0001/depth_0456.png train/reception_room_0001/filled_0456.png
278
+ train/reception_room_0001/rgb_0457.png train/reception_room_0001/depth_0457.png train/reception_room_0001/filled_0457.png
279
+ train/reception_room_0002/rgb_0458.png train/reception_room_0002/depth_0458.png train/reception_room_0002/filled_0458.png
280
+ train/reception_room_0002/rgb_0459.png train/reception_room_0002/depth_0459.png train/reception_room_0002/filled_0459.png
281
+ train/reception_room_0002/rgb_0460.png train/reception_room_0002/depth_0460.png train/reception_room_0002/filled_0460.png
282
+ train/reception_room_0002/rgb_0461.png train/reception_room_0002/depth_0461.png train/reception_room_0002/filled_0461.png
283
+ train/reception_room_0004/rgb_0467.png train/reception_room_0004/depth_0467.png train/reception_room_0004/filled_0467.png
284
+ train/reception_room_0004/rgb_0468.png train/reception_room_0004/depth_0468.png train/reception_room_0004/filled_0468.png
285
+ train/study_0003/rgb_0478.png train/study_0003/depth_0478.png train/study_0003/filled_0478.png
286
+ train/study_0003/rgb_0479.png train/study_0003/depth_0479.png train/study_0003/filled_0479.png
287
+ train/study_0003/rgb_0480.png train/study_0003/depth_0480.png train/study_0003/filled_0480.png
288
+ train/study_0003/rgb_0481.png train/study_0003/depth_0481.png train/study_0003/filled_0481.png
289
+ train/study_0004/rgb_0482.png train/study_0004/depth_0482.png train/study_0004/filled_0482.png
290
+ train/study_0004/rgb_0483.png train/study_0004/depth_0483.png train/study_0004/filled_0483.png
291
+ train/study_0004/rgb_0484.png train/study_0004/depth_0484.png train/study_0004/filled_0484.png
292
+ train/study_0005/rgb_0485.png train/study_0005/depth_0485.png train/study_0005/filled_0485.png
293
+ train/study_0005/rgb_0486.png train/study_0005/depth_0486.png train/study_0005/filled_0486.png
294
+ train/study_0006/rgb_0487.png train/study_0006/depth_0487.png train/study_0006/filled_0487.png
295
+ train/study_0006/rgb_0488.png train/study_0006/depth_0488.png train/study_0006/filled_0488.png
296
+ train/study_0006/rgb_0489.png train/study_0006/depth_0489.png train/study_0006/filled_0489.png
297
+ train/basement_0001/rgb_0490.png train/basement_0001/depth_0490.png train/basement_0001/filled_0490.png
298
+ train/basement_0001/rgb_0491.png train/basement_0001/depth_0491.png train/basement_0001/filled_0491.png
299
+ train/basement_0001/rgb_0492.png train/basement_0001/depth_0492.png train/basement_0001/filled_0492.png
300
+ train/basement_0001/rgb_0493.png train/basement_0001/depth_0493.png train/basement_0001/filled_0493.png
301
+ train/basement_0001/rgb_0494.png train/basement_0001/depth_0494.png train/basement_0001/filled_0494.png
302
+ train/basement_0001/rgb_0495.png train/basement_0001/depth_0495.png train/basement_0001/filled_0495.png
303
+ train/basement_0001/rgb_0496.png train/basement_0001/depth_0496.png train/basement_0001/filled_0496.png
304
+ train/bathroom_0053/rgb_0497.png train/bathroom_0053/depth_0497.png train/bathroom_0053/filled_0497.png
305
+ train/bathroom_0053/rgb_0498.png train/bathroom_0053/depth_0498.png train/bathroom_0053/filled_0498.png
306
+ train/bathroom_0054/rgb_0499.png train/bathroom_0054/depth_0499.png train/bathroom_0054/filled_0499.png
307
+ train/bathroom_0055/rgb_0500.png train/bathroom_0055/depth_0500.png train/bathroom_0055/filled_0500.png
308
+ train/bathroom_0055/rgb_0501.png train/bathroom_0055/depth_0501.png train/bathroom_0055/filled_0501.png
309
+ train/bathroom_0055/rgb_0502.png train/bathroom_0055/depth_0502.png train/bathroom_0055/filled_0502.png
310
+ train/bathroom_0056/rgb_0503.png train/bathroom_0056/depth_0503.png train/bathroom_0056/filled_0503.png
311
+ train/bathroom_0056/rgb_0504.png train/bathroom_0056/depth_0504.png train/bathroom_0056/filled_0504.png
312
+ train/bathroom_0056/rgb_0505.png train/bathroom_0056/depth_0505.png train/bathroom_0056/filled_0505.png
313
+ train/bathroom_0057/rgb_0506.png train/bathroom_0057/depth_0506.png train/bathroom_0057/filled_0506.png
314
+ train/bathroom_0057/rgb_0507.png train/bathroom_0057/depth_0507.png train/bathroom_0057/filled_0507.png
315
+ train/bedroom_0132/rgb_0514.png train/bedroom_0132/depth_0514.png train/bedroom_0132/filled_0514.png
316
+ train/bedroom_0136/rgb_0527.png train/bedroom_0136/depth_0527.png train/bedroom_0136/filled_0527.png
317
+ train/bedroom_0136/rgb_0528.png train/bedroom_0136/depth_0528.png train/bedroom_0136/filled_0528.png
318
+ train/bedroom_0136/rgb_0529.png train/bedroom_0136/depth_0529.png train/bedroom_0136/filled_0529.png
319
+ train/bedroom_0136/rgb_0530.png train/bedroom_0136/depth_0530.png train/bedroom_0136/filled_0530.png
320
+ train/bedroom_0138/rgb_0534.png train/bedroom_0138/depth_0534.png train/bedroom_0138/filled_0534.png
321
+ train/bedroom_0138/rgb_0535.png train/bedroom_0138/depth_0535.png train/bedroom_0138/filled_0535.png
322
+ train/bedroom_0138/rgb_0536.png train/bedroom_0138/depth_0536.png train/bedroom_0138/filled_0536.png
323
+ train/bedroom_0140/rgb_0540.png train/bedroom_0140/depth_0540.png train/bedroom_0140/filled_0540.png
324
+ train/bedroom_0140/rgb_0541.png train/bedroom_0140/depth_0541.png train/bedroom_0140/filled_0541.png
325
+ train/bedroom_0140/rgb_0542.png train/bedroom_0140/depth_0542.png train/bedroom_0140/filled_0542.png
326
+ train/bedroom_0140/rgb_0543.png train/bedroom_0140/depth_0543.png train/bedroom_0140/filled_0543.png
327
+ train/dining_room_0037/rgb_0544.png train/dining_room_0037/depth_0544.png train/dining_room_0037/filled_0544.png
328
+ train/dining_room_0037/rgb_0545.png train/dining_room_0037/depth_0545.png train/dining_room_0037/filled_0545.png
329
+ train/dining_room_0037/rgb_0546.png train/dining_room_0037/depth_0546.png train/dining_room_0037/filled_0546.png
330
+ train/dining_room_0037/rgb_0547.png train/dining_room_0037/depth_0547.png train/dining_room_0037/filled_0547.png
331
+ train/dining_room_0037/rgb_0548.png train/dining_room_0037/depth_0548.png train/dining_room_0037/filled_0548.png
332
+ train/home_office_0013/rgb_0552.png train/home_office_0013/depth_0552.png train/home_office_0013/filled_0552.png
333
+ train/home_office_0013/rgb_0553.png train/home_office_0013/depth_0553.png train/home_office_0013/filled_0553.png
334
+ train/home_office_0013/rgb_0554.png train/home_office_0013/depth_0554.png train/home_office_0013/filled_0554.png
335
+ train/kitchen_0059/rgb_0572.png train/kitchen_0059/depth_0572.png train/kitchen_0059/filled_0572.png
336
+ train/kitchen_0059/rgb_0573.png train/kitchen_0059/depth_0573.png train/kitchen_0059/filled_0573.png
337
+ train/kitchen_0059/rgb_0574.png train/kitchen_0059/depth_0574.png train/kitchen_0059/filled_0574.png
338
+ train/kitchen_0060/rgb_0575.png train/kitchen_0060/depth_0575.png train/kitchen_0060/filled_0575.png
339
+ train/kitchen_0060/rgb_0576.png train/kitchen_0060/depth_0576.png train/kitchen_0060/filled_0576.png
340
+ train/kitchen_0060/rgb_0577.png train/kitchen_0060/depth_0577.png train/kitchen_0060/filled_0577.png
341
+ train/kitchen_0060/rgb_0578.png train/kitchen_0060/depth_0578.png train/kitchen_0060/filled_0578.png
342
+ train/living_room_0082/rgb_0584.png train/living_room_0082/depth_0584.png train/living_room_0082/filled_0584.png
343
+ train/living_room_0082/rgb_0585.png train/living_room_0082/depth_0585.png train/living_room_0082/filled_0585.png
344
+ train/living_room_0082/rgb_0586.png train/living_room_0082/depth_0586.png train/living_room_0082/filled_0586.png
345
+ train/living_room_0082/rgb_0587.png train/living_room_0082/depth_0587.png train/living_room_0082/filled_0587.png
346
+ train/living_room_0083/rgb_0588.png train/living_room_0083/depth_0588.png train/living_room_0083/filled_0588.png
347
+ train/living_room_0083/rgb_0589.png train/living_room_0083/depth_0589.png train/living_room_0083/filled_0589.png
348
+ train/living_room_0083/rgb_0590.png train/living_room_0083/depth_0590.png train/living_room_0083/filled_0590.png
349
+ train/living_room_0085/rgb_0595.png train/living_room_0085/depth_0595.png train/living_room_0085/filled_0595.png
350
+ train/living_room_0085/rgb_0596.png train/living_room_0085/depth_0596.png train/living_room_0085/filled_0596.png
351
+ train/living_room_0086/rgb_0597.png train/living_room_0086/depth_0597.png train/living_room_0086/filled_0597.png
352
+ train/living_room_0086/rgb_0598.png train/living_room_0086/depth_0598.png train/living_room_0086/filled_0598.png
353
+ train/living_room_0086/rgb_0599.png train/living_room_0086/depth_0599.png train/living_room_0086/filled_0599.png
354
+ train/living_room_0086/rgb_0600.png train/living_room_0086/depth_0600.png train/living_room_0086/filled_0600.png
355
+ train/living_room_0086/rgb_0601.png train/living_room_0086/depth_0601.png train/living_room_0086/filled_0601.png
356
+ train/living_room_0086/rgb_0602.png train/living_room_0086/depth_0602.png train/living_room_0086/filled_0602.png
357
+ train/office_0018/rgb_0608.png train/office_0018/depth_0608.png train/office_0018/filled_0608.png
358
+ train/office_0019/rgb_0609.png train/office_0019/depth_0609.png train/office_0019/filled_0609.png
359
+ train/office_0019/rgb_0610.png train/office_0019/depth_0610.png train/office_0019/filled_0610.png
360
+ train/office_0019/rgb_0611.png train/office_0019/depth_0611.png train/office_0019/filled_0611.png
361
+ train/office_0021/rgb_0614.png train/office_0021/depth_0614.png train/office_0021/filled_0614.png
362
+ train/office_0021/rgb_0615.png train/office_0021/depth_0615.png train/office_0021/filled_0615.png
363
+ train/office_0021/rgb_0616.png train/office_0021/depth_0616.png train/office_0021/filled_0616.png
364
+ train/office_0023/rgb_0622.png train/office_0023/depth_0622.png train/office_0023/filled_0622.png
365
+ train/office_0023/rgb_0623.png train/office_0023/depth_0623.png train/office_0023/filled_0623.png
366
+ train/office_0024/rgb_0624.png train/office_0024/depth_0624.png train/office_0024/filled_0624.png
367
+ train/office_0024/rgb_0625.png train/office_0024/depth_0625.png train/office_0024/filled_0625.png
368
+ train/office_0024/rgb_0626.png train/office_0024/depth_0626.png train/office_0024/filled_0626.png
369
+ train/office_0024/rgb_0627.png train/office_0024/depth_0627.png train/office_0024/filled_0627.png
370
+ train/office_0025/rgb_0628.png train/office_0025/depth_0628.png train/office_0025/filled_0628.png
371
+ train/office_0025/rgb_0629.png train/office_0025/depth_0629.png train/office_0025/filled_0629.png
372
+ train/office_0026/rgb_0630.png train/office_0026/depth_0630.png train/office_0026/filled_0630.png
373
+ train/office_0026/rgb_0631.png train/office_0026/depth_0631.png train/office_0026/filled_0631.png
374
+ train/office_0026/rgb_0632.png train/office_0026/depth_0632.png train/office_0026/filled_0632.png
375
+ train/student_lounge_0001/rgb_0639.png train/student_lounge_0001/depth_0639.png train/student_lounge_0001/filled_0639.png
376
+ train/student_lounge_0001/rgb_0640.png train/student_lounge_0001/depth_0640.png train/student_lounge_0001/filled_0640.png
377
+ train/student_lounge_0001/rgb_0641.png train/student_lounge_0001/depth_0641.png train/student_lounge_0001/filled_0641.png
378
+ train/student_lounge_0001/rgb_0642.png train/student_lounge_0001/depth_0642.png train/student_lounge_0001/filled_0642.png
379
+ train/student_lounge_0001/rgb_0643.png train/student_lounge_0001/depth_0643.png train/student_lounge_0001/filled_0643.png
380
+ train/study_0008/rgb_0646.png train/study_0008/depth_0646.png train/study_0008/filled_0646.png
381
+ train/study_0008/rgb_0647.png train/study_0008/depth_0647.png train/study_0008/filled_0647.png
382
+ train/bathroom_0007/rgb_0648.png train/bathroom_0007/depth_0648.png train/bathroom_0007/filled_0648.png
383
+ train/bathroom_0007/rgb_0649.png train/bathroom_0007/depth_0649.png train/bathroom_0007/filled_0649.png
384
+ train/bathroom_0010/rgb_0652.png train/bathroom_0010/depth_0652.png train/bathroom_0010/filled_0652.png
385
+ train/bathroom_0010/rgb_0653.png train/bathroom_0010/depth_0653.png train/bathroom_0010/filled_0653.png
386
+ train/bathroom_0011/rgb_0654.png train/bathroom_0011/depth_0654.png train/bathroom_0011/filled_0654.png
387
+ train/bathroom_0011/rgb_0655.png train/bathroom_0011/depth_0655.png train/bathroom_0011/filled_0655.png
388
+ train/bathroom_0013/rgb_0659.png train/bathroom_0013/depth_0659.png train/bathroom_0013/filled_0659.png
389
+ train/bathroom_0013/rgb_0660.png train/bathroom_0013/depth_0660.png train/bathroom_0013/filled_0660.png
390
+ train/bathroom_0014/rgb_0661.png train/bathroom_0014/depth_0661.png train/bathroom_0014/filled_0661.png
391
+ train/bathroom_0014/rgb_0662.png train/bathroom_0014/depth_0662.png train/bathroom_0014/filled_0662.png
392
+ train/bathroom_0016/rgb_0665.png train/bathroom_0016/depth_0665.png train/bathroom_0016/filled_0665.png
393
+ train/bathroom_0016/rgb_0666.png train/bathroom_0016/depth_0666.png train/bathroom_0016/filled_0666.png
394
+ train/bathroom_0016/rgb_0667.png train/bathroom_0016/depth_0667.png train/bathroom_0016/filled_0667.png
395
+ train/bathroom_0019/rgb_0674.png train/bathroom_0019/depth_0674.png train/bathroom_0019/filled_0674.png
396
+ train/bathroom_0019/rgb_0675.png train/bathroom_0019/depth_0675.png train/bathroom_0019/filled_0675.png
397
+ train/bathroom_0023/rgb_0682.png train/bathroom_0023/depth_0682.png train/bathroom_0023/filled_0682.png
398
+ train/bathroom_0023/rgb_0683.png train/bathroom_0023/depth_0683.png train/bathroom_0023/filled_0683.png
399
+ train/bathroom_0024/rgb_0684.png train/bathroom_0024/depth_0684.png train/bathroom_0024/filled_0684.png
400
+ train/bathroom_0024/rgb_0685.png train/bathroom_0024/depth_0685.png train/bathroom_0024/filled_0685.png
401
+ train/bathroom_0028/rgb_0691.png train/bathroom_0028/depth_0691.png train/bathroom_0028/filled_0691.png
402
+ train/bathroom_0028/rgb_0692.png train/bathroom_0028/depth_0692.png train/bathroom_0028/filled_0692.png
403
+ train/bathroom_0030/rgb_0695.png train/bathroom_0030/depth_0695.png train/bathroom_0030/filled_0695.png
404
+ train/bathroom_0030/rgb_0696.png train/bathroom_0030/depth_0696.png train/bathroom_0030/filled_0696.png
405
+ train/bathroom_0033/rgb_0700.png train/bathroom_0033/depth_0700.png train/bathroom_0033/filled_0700.png
406
+ train/bathroom_0033/rgb_0701.png train/bathroom_0033/depth_0701.png train/bathroom_0033/filled_0701.png
407
+ train/bathroom_0034/rgb_0702.png train/bathroom_0034/depth_0702.png train/bathroom_0034/filled_0702.png
408
+ train/bathroom_0034/rgb_0703.png train/bathroom_0034/depth_0703.png train/bathroom_0034/filled_0703.png
409
+ train/bathroom_0034/rgb_0704.png train/bathroom_0034/depth_0704.png train/bathroom_0034/filled_0704.png
410
+ train/bathroom_0035/rgb_0705.png train/bathroom_0035/depth_0705.png train/bathroom_0035/filled_0705.png
411
+ train/bathroom_0039/rgb_0714.png train/bathroom_0039/depth_0714.png train/bathroom_0039/filled_0714.png
412
+ train/bathroom_0039/rgb_0715.png train/bathroom_0039/depth_0715.png train/bathroom_0039/filled_0715.png
413
+ train/bathroom_0039/rgb_0716.png train/bathroom_0039/depth_0716.png train/bathroom_0039/filled_0716.png
414
+ train/bathroom_0041/rgb_0719.png train/bathroom_0041/depth_0719.png train/bathroom_0041/filled_0719.png
415
+ train/bathroom_0041/rgb_0720.png train/bathroom_0041/depth_0720.png train/bathroom_0041/filled_0720.png
416
+ train/bathroom_0041/rgb_0721.png train/bathroom_0041/depth_0721.png train/bathroom_0041/filled_0721.png
417
+ train/bathroom_0042/rgb_0722.png train/bathroom_0042/depth_0722.png train/bathroom_0042/filled_0722.png
418
+ train/bathroom_0042/rgb_0723.png train/bathroom_0042/depth_0723.png train/bathroom_0042/filled_0723.png
419
+ train/bathroom_0045/rgb_0729.png train/bathroom_0045/depth_0729.png train/bathroom_0045/filled_0729.png
420
+ train/bathroom_0045/rgb_0730.png train/bathroom_0045/depth_0730.png train/bathroom_0045/filled_0730.png
421
+ train/bathroom_0048/rgb_0735.png train/bathroom_0048/depth_0735.png train/bathroom_0048/filled_0735.png
422
+ train/bathroom_0048/rgb_0736.png train/bathroom_0048/depth_0736.png train/bathroom_0048/filled_0736.png
423
+ train/bathroom_0049/rgb_0737.png train/bathroom_0049/depth_0737.png train/bathroom_0049/filled_0737.png
424
+ train/bathroom_0049/rgb_0738.png train/bathroom_0049/depth_0738.png train/bathroom_0049/filled_0738.png
425
+ train/bathroom_0050/rgb_0739.png train/bathroom_0050/depth_0739.png train/bathroom_0050/filled_0739.png
426
+ train/bathroom_0051/rgb_0740.png train/bathroom_0051/depth_0740.png train/bathroom_0051/filled_0740.png
427
+ train/bathroom_0051/rgb_0741.png train/bathroom_0051/depth_0741.png train/bathroom_0051/filled_0741.png
428
+ train/bathroom_0051/rgb_0742.png train/bathroom_0051/depth_0742.png train/bathroom_0051/filled_0742.png
429
+ train/kitchen_0019/rgb_0745.png train/kitchen_0019/depth_0745.png train/kitchen_0019/filled_0745.png
430
+ train/kitchen_0019/rgb_0746.png train/kitchen_0019/depth_0746.png train/kitchen_0019/filled_0746.png
431
+ train/kitchen_0019/rgb_0747.png train/kitchen_0019/depth_0747.png train/kitchen_0019/filled_0747.png
432
+ train/kitchen_0019/rgb_0748.png train/kitchen_0019/depth_0748.png train/kitchen_0019/filled_0748.png
433
+ train/kitchen_0019/rgb_0749.png train/kitchen_0019/depth_0749.png train/kitchen_0019/filled_0749.png
434
+ train/kitchen_0019/rgb_0750.png train/kitchen_0019/depth_0750.png train/kitchen_0019/filled_0750.png
435
+ train/kitchen_0019/rgb_0751.png train/kitchen_0019/depth_0751.png train/kitchen_0019/filled_0751.png
436
+ train/kitchen_0019/rgb_0752.png train/kitchen_0019/depth_0752.png train/kitchen_0019/filled_0752.png
437
+ train/kitchen_0019/rgb_0753.png train/kitchen_0019/depth_0753.png train/kitchen_0019/filled_0753.png
438
+ train/kitchen_0019/rgb_0754.png train/kitchen_0019/depth_0754.png train/kitchen_0019/filled_0754.png
439
+ train/kitchen_0019/rgb_0755.png train/kitchen_0019/depth_0755.png train/kitchen_0019/filled_0755.png
440
+ train/kitchen_0019/rgb_0756.png train/kitchen_0019/depth_0756.png train/kitchen_0019/filled_0756.png
441
+ train/kitchen_0019/rgb_0757.png train/kitchen_0019/depth_0757.png train/kitchen_0019/filled_0757.png
442
+ train/kitchen_0019/rgb_0758.png train/kitchen_0019/depth_0758.png train/kitchen_0019/filled_0758.png
443
+ train/kitchen_0028/rgb_0788.png train/kitchen_0028/depth_0788.png train/kitchen_0028/filled_0788.png
444
+ train/kitchen_0028/rgb_0789.png train/kitchen_0028/depth_0789.png train/kitchen_0028/filled_0789.png
445
+ train/kitchen_0028/rgb_0790.png train/kitchen_0028/depth_0790.png train/kitchen_0028/filled_0790.png
446
+ train/kitchen_0028/rgb_0791.png train/kitchen_0028/depth_0791.png train/kitchen_0028/filled_0791.png
447
+ train/kitchen_0028/rgb_0792.png train/kitchen_0028/depth_0792.png train/kitchen_0028/filled_0792.png
448
+ train/kitchen_0028/rgb_0793.png train/kitchen_0028/depth_0793.png train/kitchen_0028/filled_0793.png
449
+ train/kitchen_0028/rgb_0794.png train/kitchen_0028/depth_0794.png train/kitchen_0028/filled_0794.png
450
+ train/kitchen_0029/rgb_0795.png train/kitchen_0029/depth_0795.png train/kitchen_0029/filled_0795.png
451
+ train/kitchen_0029/rgb_0796.png train/kitchen_0029/depth_0796.png train/kitchen_0029/filled_0796.png
452
+ train/kitchen_0029/rgb_0797.png train/kitchen_0029/depth_0797.png train/kitchen_0029/filled_0797.png
453
+ train/kitchen_0029/rgb_0798.png train/kitchen_0029/depth_0798.png train/kitchen_0029/filled_0798.png
454
+ train/kitchen_0029/rgb_0799.png train/kitchen_0029/depth_0799.png train/kitchen_0029/filled_0799.png
455
+ train/kitchen_0031/rgb_0805.png train/kitchen_0031/depth_0805.png train/kitchen_0031/filled_0805.png
456
+ train/kitchen_0031/rgb_0806.png train/kitchen_0031/depth_0806.png train/kitchen_0031/filled_0806.png
457
+ train/kitchen_0031/rgb_0807.png train/kitchen_0031/depth_0807.png train/kitchen_0031/filled_0807.png
458
+ train/kitchen_0031/rgb_0808.png train/kitchen_0031/depth_0808.png train/kitchen_0031/filled_0808.png
459
+ train/kitchen_0031/rgb_0809.png train/kitchen_0031/depth_0809.png train/kitchen_0031/filled_0809.png
460
+ train/kitchen_0033/rgb_0815.png train/kitchen_0033/depth_0815.png train/kitchen_0033/filled_0815.png
461
+ train/kitchen_0033/rgb_0816.png train/kitchen_0033/depth_0816.png train/kitchen_0033/filled_0816.png
462
+ train/kitchen_0033/rgb_0817.png train/kitchen_0033/depth_0817.png train/kitchen_0033/filled_0817.png
463
+ train/kitchen_0033/rgb_0818.png train/kitchen_0033/depth_0818.png train/kitchen_0033/filled_0818.png
464
+ train/kitchen_0033/rgb_0819.png train/kitchen_0033/depth_0819.png train/kitchen_0033/filled_0819.png
465
+ train/kitchen_0033/rgb_0820.png train/kitchen_0033/depth_0820.png train/kitchen_0033/filled_0820.png
466
+ train/kitchen_0035/rgb_0824.png train/kitchen_0035/depth_0824.png train/kitchen_0035/filled_0824.png
467
+ train/kitchen_0035/rgb_0825.png train/kitchen_0035/depth_0825.png train/kitchen_0035/filled_0825.png
468
+ train/kitchen_0035/rgb_0826.png train/kitchen_0035/depth_0826.png train/kitchen_0035/filled_0826.png
469
+ train/kitchen_0035/rgb_0827.png train/kitchen_0035/depth_0827.png train/kitchen_0035/filled_0827.png
470
+ train/kitchen_0035/rgb_0828.png train/kitchen_0035/depth_0828.png train/kitchen_0035/filled_0828.png
471
+ train/kitchen_0035/rgb_0829.png train/kitchen_0035/depth_0829.png train/kitchen_0035/filled_0829.png
472
+ train/kitchen_0037/rgb_0830.png train/kitchen_0037/depth_0830.png train/kitchen_0037/filled_0830.png
473
+ train/kitchen_0037/rgb_0831.png train/kitchen_0037/depth_0831.png train/kitchen_0037/filled_0831.png
474
+ train/kitchen_0037/rgb_0832.png train/kitchen_0037/depth_0832.png train/kitchen_0037/filled_0832.png
475
+ train/kitchen_0041/rgb_0847.png train/kitchen_0041/depth_0847.png train/kitchen_0041/filled_0847.png
476
+ train/kitchen_0041/rgb_0848.png train/kitchen_0041/depth_0848.png train/kitchen_0041/filled_0848.png
477
+ train/kitchen_0041/rgb_0849.png train/kitchen_0041/depth_0849.png train/kitchen_0041/filled_0849.png
478
+ train/kitchen_0043/rgb_0853.png train/kitchen_0043/depth_0853.png train/kitchen_0043/filled_0853.png
479
+ train/kitchen_0043/rgb_0854.png train/kitchen_0043/depth_0854.png train/kitchen_0043/filled_0854.png
480
+ train/kitchen_0043/rgb_0855.png train/kitchen_0043/depth_0855.png train/kitchen_0043/filled_0855.png
481
+ train/kitchen_0043/rgb_0856.png train/kitchen_0043/depth_0856.png train/kitchen_0043/filled_0856.png
482
+ train/kitchen_0045/rgb_0863.png train/kitchen_0045/depth_0863.png train/kitchen_0045/filled_0863.png
483
+ train/kitchen_0045/rgb_0864.png train/kitchen_0045/depth_0864.png train/kitchen_0045/filled_0864.png
484
+ train/kitchen_0045/rgb_0865.png train/kitchen_0045/depth_0865.png train/kitchen_0045/filled_0865.png
485
+ train/kitchen_0045/rgb_0866.png train/kitchen_0045/depth_0866.png train/kitchen_0045/filled_0866.png
486
+ train/kitchen_0045/rgb_0867.png train/kitchen_0045/depth_0867.png train/kitchen_0045/filled_0867.png
487
+ train/kitchen_0045/rgb_0868.png train/kitchen_0045/depth_0868.png train/kitchen_0045/filled_0868.png
488
+ train/kitchen_0047/rgb_0872.png train/kitchen_0047/depth_0872.png train/kitchen_0047/filled_0872.png
489
+ train/kitchen_0047/rgb_0873.png train/kitchen_0047/depth_0873.png train/kitchen_0047/filled_0873.png
490
+ train/kitchen_0047/rgb_0874.png train/kitchen_0047/depth_0874.png train/kitchen_0047/filled_0874.png
491
+ train/kitchen_0047/rgb_0875.png train/kitchen_0047/depth_0875.png train/kitchen_0047/filled_0875.png
492
+ train/kitchen_0048/rgb_0876.png train/kitchen_0048/depth_0876.png train/kitchen_0048/filled_0876.png
493
+ train/kitchen_0048/rgb_0877.png train/kitchen_0048/depth_0877.png train/kitchen_0048/filled_0877.png
494
+ train/kitchen_0048/rgb_0878.png train/kitchen_0048/depth_0878.png train/kitchen_0048/filled_0878.png
495
+ train/kitchen_0048/rgb_0879.png train/kitchen_0048/depth_0879.png train/kitchen_0048/filled_0879.png
496
+ train/kitchen_0049/rgb_0880.png train/kitchen_0049/depth_0880.png train/kitchen_0049/filled_0880.png
497
+ train/kitchen_0049/rgb_0881.png train/kitchen_0049/depth_0881.png train/kitchen_0049/filled_0881.png
498
+ train/kitchen_0049/rgb_0882.png train/kitchen_0049/depth_0882.png train/kitchen_0049/filled_0882.png
499
+ train/kitchen_0049/rgb_0883.png train/kitchen_0049/depth_0883.png train/kitchen_0049/filled_0883.png
500
+ train/kitchen_0050/rgb_0884.png train/kitchen_0050/depth_0884.png train/kitchen_0050/filled_0884.png
501
+ train/kitchen_0050/rgb_0885.png train/kitchen_0050/depth_0885.png train/kitchen_0050/filled_0885.png
502
+ train/kitchen_0050/rgb_0886.png train/kitchen_0050/depth_0886.png train/kitchen_0050/filled_0886.png
503
+ train/kitchen_0050/rgb_0887.png train/kitchen_0050/depth_0887.png train/kitchen_0050/filled_0887.png
504
+ train/kitchen_0051/rgb_0888.png train/kitchen_0051/depth_0888.png train/kitchen_0051/filled_0888.png
505
+ train/kitchen_0051/rgb_0889.png train/kitchen_0051/depth_0889.png train/kitchen_0051/filled_0889.png
506
+ train/kitchen_0051/rgb_0890.png train/kitchen_0051/depth_0890.png train/kitchen_0051/filled_0890.png
507
+ train/kitchen_0051/rgb_0891.png train/kitchen_0051/depth_0891.png train/kitchen_0051/filled_0891.png
508
+ train/kitchen_0051/rgb_0892.png train/kitchen_0051/depth_0892.png train/kitchen_0051/filled_0892.png
509
+ train/kitchen_0051/rgb_0893.png train/kitchen_0051/depth_0893.png train/kitchen_0051/filled_0893.png
510
+ train/kitchen_0051/rgb_0894.png train/kitchen_0051/depth_0894.png train/kitchen_0051/filled_0894.png
511
+ train/kitchen_0052/rgb_0895.png train/kitchen_0052/depth_0895.png train/kitchen_0052/filled_0895.png
512
+ train/kitchen_0052/rgb_0896.png train/kitchen_0052/depth_0896.png train/kitchen_0052/filled_0896.png
513
+ train/kitchen_0052/rgb_0897.png train/kitchen_0052/depth_0897.png train/kitchen_0052/filled_0897.png
514
+ train/kitchen_0052/rgb_0898.png train/kitchen_0052/depth_0898.png train/kitchen_0052/filled_0898.png
515
+ train/kitchen_0052/rgb_0899.png train/kitchen_0052/depth_0899.png train/kitchen_0052/filled_0899.png
516
+ train/kitchen_0053/rgb_0900.png train/kitchen_0053/depth_0900.png train/kitchen_0053/filled_0900.png
517
+ train/kitchen_0053/rgb_0901.png train/kitchen_0053/depth_0901.png train/kitchen_0053/filled_0901.png
518
+ train/kitchen_0053/rgb_0902.png train/kitchen_0053/depth_0902.png train/kitchen_0053/filled_0902.png
519
+ train/kitchen_0053/rgb_0903.png train/kitchen_0053/depth_0903.png train/kitchen_0053/filled_0903.png
520
+ train/kitchen_0053/rgb_0904.png train/kitchen_0053/depth_0904.png train/kitchen_0053/filled_0904.png
521
+ train/kitchen_0053/rgb_0905.png train/kitchen_0053/depth_0905.png train/kitchen_0053/filled_0905.png
522
+ train/bedroom_0025/rgb_0909.png train/bedroom_0025/depth_0909.png train/bedroom_0025/filled_0909.png
523
+ train/bedroom_0025/rgb_0910.png train/bedroom_0025/depth_0910.png train/bedroom_0025/filled_0910.png
524
+ train/bedroom_0025/rgb_0911.png train/bedroom_0025/depth_0911.png train/bedroom_0025/filled_0911.png
525
+ train/bedroom_0025/rgb_0912.png train/bedroom_0025/depth_0912.png train/bedroom_0025/filled_0912.png
526
+ train/bedroom_0026/rgb_0913.png train/bedroom_0026/depth_0913.png train/bedroom_0026/filled_0913.png
527
+ train/bedroom_0026/rgb_0914.png train/bedroom_0026/depth_0914.png train/bedroom_0026/filled_0914.png
528
+ train/bedroom_0026/rgb_0915.png train/bedroom_0026/depth_0915.png train/bedroom_0026/filled_0915.png
529
+ train/bedroom_0026/rgb_0916.png train/bedroom_0026/depth_0916.png train/bedroom_0026/filled_0916.png
530
+ train/bedroom_0028/rgb_0920.png train/bedroom_0028/depth_0920.png train/bedroom_0028/filled_0920.png
531
+ train/bedroom_0028/rgb_0921.png train/bedroom_0028/depth_0921.png train/bedroom_0028/filled_0921.png
532
+ train/bedroom_0028/rgb_0922.png train/bedroom_0028/depth_0922.png train/bedroom_0028/filled_0922.png
533
+ train/bedroom_0029/rgb_0923.png train/bedroom_0029/depth_0923.png train/bedroom_0029/filled_0923.png
534
+ train/bedroom_0029/rgb_0924.png train/bedroom_0029/depth_0924.png train/bedroom_0029/filled_0924.png
535
+ train/bedroom_0029/rgb_0925.png train/bedroom_0029/depth_0925.png train/bedroom_0029/filled_0925.png
536
+ train/bedroom_0031/rgb_0929.png train/bedroom_0031/depth_0929.png train/bedroom_0031/filled_0929.png
537
+ train/bedroom_0031/rgb_0930.png train/bedroom_0031/depth_0930.png train/bedroom_0031/filled_0930.png
538
+ train/bedroom_0031/rgb_0931.png train/bedroom_0031/depth_0931.png train/bedroom_0031/filled_0931.png
539
+ train/bedroom_0033/rgb_0936.png train/bedroom_0033/depth_0936.png train/bedroom_0033/filled_0936.png
540
+ train/bedroom_0033/rgb_0937.png train/bedroom_0033/depth_0937.png train/bedroom_0033/filled_0937.png
541
+ train/bedroom_0034/rgb_0938.png train/bedroom_0034/depth_0938.png train/bedroom_0034/filled_0938.png
542
+ train/bedroom_0034/rgb_0939.png train/bedroom_0034/depth_0939.png train/bedroom_0034/filled_0939.png
543
+ train/bedroom_0034/rgb_0940.png train/bedroom_0034/depth_0940.png train/bedroom_0034/filled_0940.png
544
+ train/bedroom_0035/rgb_0941.png train/bedroom_0035/depth_0941.png train/bedroom_0035/filled_0941.png
545
+ train/bedroom_0035/rgb_0942.png train/bedroom_0035/depth_0942.png train/bedroom_0035/filled_0942.png
546
+ train/bedroom_0036/rgb_0943.png train/bedroom_0036/depth_0943.png train/bedroom_0036/filled_0943.png
547
+ train/bedroom_0036/rgb_0944.png train/bedroom_0036/depth_0944.png train/bedroom_0036/filled_0944.png
548
+ train/bedroom_0038/rgb_0948.png train/bedroom_0038/depth_0948.png train/bedroom_0038/filled_0948.png
549
+ train/bedroom_0038/rgb_0949.png train/bedroom_0038/depth_0949.png train/bedroom_0038/filled_0949.png
550
+ train/bedroom_0039/rgb_0950.png train/bedroom_0039/depth_0950.png train/bedroom_0039/filled_0950.png
551
+ train/bedroom_0039/rgb_0951.png train/bedroom_0039/depth_0951.png train/bedroom_0039/filled_0951.png
552
+ train/bedroom_0040/rgb_0952.png train/bedroom_0040/depth_0952.png train/bedroom_0040/filled_0952.png
553
+ train/bedroom_0040/rgb_0953.png train/bedroom_0040/depth_0953.png train/bedroom_0040/filled_0953.png
554
+ train/bedroom_0040/rgb_0954.png train/bedroom_0040/depth_0954.png train/bedroom_0040/filled_0954.png
555
+ train/bedroom_0041/rgb_0955.png train/bedroom_0041/depth_0955.png train/bedroom_0041/filled_0955.png
556
+ train/bedroom_0041/rgb_0956.png train/bedroom_0041/depth_0956.png train/bedroom_0041/filled_0956.png
557
+ train/bedroom_0041/rgb_0957.png train/bedroom_0041/depth_0957.png train/bedroom_0041/filled_0957.png
558
+ train/bedroom_0042/rgb_0958.png train/bedroom_0042/depth_0958.png train/bedroom_0042/filled_0958.png
559
+ train/bedroom_0045/rgb_0963.png train/bedroom_0045/depth_0963.png train/bedroom_0045/filled_0963.png
560
+ train/bedroom_0045/rgb_0964.png train/bedroom_0045/depth_0964.png train/bedroom_0045/filled_0964.png
561
+ train/bedroom_0047/rgb_0968.png train/bedroom_0047/depth_0968.png train/bedroom_0047/filled_0968.png
562
+ train/bedroom_0047/rgb_0969.png train/bedroom_0047/depth_0969.png train/bedroom_0047/filled_0969.png
563
+ train/bedroom_0050/rgb_0978.png train/bedroom_0050/depth_0978.png train/bedroom_0050/filled_0978.png
564
+ train/bedroom_0050/rgb_0979.png train/bedroom_0050/depth_0979.png train/bedroom_0050/filled_0979.png
565
+ train/bedroom_0050/rgb_0980.png train/bedroom_0050/depth_0980.png train/bedroom_0050/filled_0980.png
566
+ train/bedroom_0051/rgb_0981.png train/bedroom_0051/depth_0981.png train/bedroom_0051/filled_0981.png
567
+ train/bedroom_0051/rgb_0982.png train/bedroom_0051/depth_0982.png train/bedroom_0051/filled_0982.png
568
+ train/bedroom_0051/rgb_0983.png train/bedroom_0051/depth_0983.png train/bedroom_0051/filled_0983.png
569
+ train/bedroom_0051/rgb_0984.png train/bedroom_0051/depth_0984.png train/bedroom_0051/filled_0984.png
570
+ train/bedroom_0051/rgb_0985.png train/bedroom_0051/depth_0985.png train/bedroom_0051/filled_0985.png
571
+ train/bedroom_0052/rgb_0986.png train/bedroom_0052/depth_0986.png train/bedroom_0052/filled_0986.png
572
+ train/bedroom_0052/rgb_0987.png train/bedroom_0052/depth_0987.png train/bedroom_0052/filled_0987.png
573
+ train/bedroom_0052/rgb_0988.png train/bedroom_0052/depth_0988.png train/bedroom_0052/filled_0988.png
574
+ train/bedroom_0053/rgb_0989.png train/bedroom_0053/depth_0989.png train/bedroom_0053/filled_0989.png
575
+ train/bedroom_0053/rgb_0990.png train/bedroom_0053/depth_0990.png train/bedroom_0053/filled_0990.png
576
+ train/bedroom_0056/rgb_0996.png train/bedroom_0056/depth_0996.png train/bedroom_0056/filled_0996.png
577
+ train/bedroom_0056/rgb_0997.png train/bedroom_0056/depth_0997.png train/bedroom_0056/filled_0997.png
578
+ train/bedroom_0057/rgb_0998.png train/bedroom_0057/depth_0998.png train/bedroom_0057/filled_0998.png
579
+ train/bedroom_0057/rgb_0999.png train/bedroom_0057/depth_0999.png train/bedroom_0057/filled_0999.png
580
+ train/bedroom_0057/rgb_1000.png train/bedroom_0057/depth_1000.png train/bedroom_0057/filled_1000.png
581
+ train/bedroom_0059/rgb_1005.png train/bedroom_0059/depth_1005.png train/bedroom_0059/filled_1005.png
582
+ train/bedroom_0059/rgb_1006.png train/bedroom_0059/depth_1006.png train/bedroom_0059/filled_1006.png
583
+ train/bedroom_0059/rgb_1007.png train/bedroom_0059/depth_1007.png train/bedroom_0059/filled_1007.png
584
+ train/bedroom_0060/rgb_1008.png train/bedroom_0060/depth_1008.png train/bedroom_0060/filled_1008.png
585
+ train/bedroom_0060/rgb_1009.png train/bedroom_0060/depth_1009.png train/bedroom_0060/filled_1009.png
586
+ train/bedroom_0062/rgb_1013.png train/bedroom_0062/depth_1013.png train/bedroom_0062/filled_1013.png
587
+ train/bedroom_0062/rgb_1014.png train/bedroom_0062/depth_1014.png train/bedroom_0062/filled_1014.png
588
+ train/bedroom_0062/rgb_1015.png train/bedroom_0062/depth_1015.png train/bedroom_0062/filled_1015.png
589
+ train/bedroom_0062/rgb_1016.png train/bedroom_0062/depth_1016.png train/bedroom_0062/filled_1016.png
590
+ train/bedroom_0062/rgb_1017.png train/bedroom_0062/depth_1017.png train/bedroom_0062/filled_1017.png
591
+ train/bedroom_0063/rgb_1018.png train/bedroom_0063/depth_1018.png train/bedroom_0063/filled_1018.png
592
+ train/bedroom_0063/rgb_1019.png train/bedroom_0063/depth_1019.png train/bedroom_0063/filled_1019.png
593
+ train/bedroom_0063/rgb_1020.png train/bedroom_0063/depth_1020.png train/bedroom_0063/filled_1020.png
594
+ train/bedroom_0065/rgb_1024.png train/bedroom_0065/depth_1024.png train/bedroom_0065/filled_1024.png
595
+ train/bedroom_0065/rgb_1025.png train/bedroom_0065/depth_1025.png train/bedroom_0065/filled_1025.png
596
+ train/bedroom_0065/rgb_1026.png train/bedroom_0065/depth_1026.png train/bedroom_0065/filled_1026.png
597
+ train/bedroom_0066/rgb_1027.png train/bedroom_0066/depth_1027.png train/bedroom_0066/filled_1027.png
598
+ train/bedroom_0066/rgb_1028.png train/bedroom_0066/depth_1028.png train/bedroom_0066/filled_1028.png
599
+ train/bedroom_0067/rgb_1029.png train/bedroom_0067/depth_1029.png train/bedroom_0067/filled_1029.png
600
+ train/bedroom_0067/rgb_1030.png train/bedroom_0067/depth_1030.png train/bedroom_0067/filled_1030.png
601
+ train/bedroom_0067/rgb_1031.png train/bedroom_0067/depth_1031.png train/bedroom_0067/filled_1031.png
602
+ train/bedroom_0069/rgb_1035.png train/bedroom_0069/depth_1035.png train/bedroom_0069/filled_1035.png
603
+ train/bedroom_0069/rgb_1036.png train/bedroom_0069/depth_1036.png train/bedroom_0069/filled_1036.png
604
+ train/bedroom_0069/rgb_1037.png train/bedroom_0069/depth_1037.png train/bedroom_0069/filled_1037.png
605
+ train/bedroom_0071/rgb_1040.png train/bedroom_0071/depth_1040.png train/bedroom_0071/filled_1040.png
606
+ train/bedroom_0071/rgb_1041.png train/bedroom_0071/depth_1041.png train/bedroom_0071/filled_1041.png
607
+ train/bedroom_0071/rgb_1042.png train/bedroom_0071/depth_1042.png train/bedroom_0071/filled_1042.png
608
+ train/bedroom_0071/rgb_1043.png train/bedroom_0071/depth_1043.png train/bedroom_0071/filled_1043.png
609
+ train/bedroom_0072/rgb_1044.png train/bedroom_0072/depth_1044.png train/bedroom_0072/filled_1044.png
610
+ train/bedroom_0072/rgb_1045.png train/bedroom_0072/depth_1045.png train/bedroom_0072/filled_1045.png
611
+ train/bedroom_0072/rgb_1046.png train/bedroom_0072/depth_1046.png train/bedroom_0072/filled_1046.png
612
+ train/bedroom_0072/rgb_1047.png train/bedroom_0072/depth_1047.png train/bedroom_0072/filled_1047.png
613
+ train/bedroom_0074/rgb_1050.png train/bedroom_0074/depth_1050.png train/bedroom_0074/filled_1050.png
614
+ train/bedroom_0074/rgb_1051.png train/bedroom_0074/depth_1051.png train/bedroom_0074/filled_1051.png
615
+ train/bedroom_0076/rgb_1054.png train/bedroom_0076/depth_1054.png train/bedroom_0076/filled_1054.png
616
+ train/bedroom_0076/rgb_1055.png train/bedroom_0076/depth_1055.png train/bedroom_0076/filled_1055.png
617
+ train/bedroom_0076/rgb_1056.png train/bedroom_0076/depth_1056.png train/bedroom_0076/filled_1056.png
618
+ train/bedroom_0078/rgb_1059.png train/bedroom_0078/depth_1059.png train/bedroom_0078/filled_1059.png
619
+ train/bedroom_0078/rgb_1060.png train/bedroom_0078/depth_1060.png train/bedroom_0078/filled_1060.png
620
+ train/bedroom_0078/rgb_1061.png train/bedroom_0078/depth_1061.png train/bedroom_0078/filled_1061.png
621
+ train/bedroom_0079/rgb_1062.png train/bedroom_0079/depth_1062.png train/bedroom_0079/filled_1062.png
622
+ train/bedroom_0079/rgb_1063.png train/bedroom_0079/depth_1063.png train/bedroom_0079/filled_1063.png
623
+ train/bedroom_0079/rgb_1064.png train/bedroom_0079/depth_1064.png train/bedroom_0079/filled_1064.png
624
+ train/bedroom_0079/rgb_1065.png train/bedroom_0079/depth_1065.png train/bedroom_0079/filled_1065.png
625
+ train/bedroom_0080/rgb_1066.png train/bedroom_0080/depth_1066.png train/bedroom_0080/filled_1066.png
626
+ train/bedroom_0080/rgb_1067.png train/bedroom_0080/depth_1067.png train/bedroom_0080/filled_1067.png
627
+ train/bedroom_0080/rgb_1068.png train/bedroom_0080/depth_1068.png train/bedroom_0080/filled_1068.png
628
+ train/bedroom_0080/rgb_1069.png train/bedroom_0080/depth_1069.png train/bedroom_0080/filled_1069.png
629
+ train/bedroom_0081/rgb_1070.png train/bedroom_0081/depth_1070.png train/bedroom_0081/filled_1070.png
630
+ train/bedroom_0081/rgb_1071.png train/bedroom_0081/depth_1071.png train/bedroom_0081/filled_1071.png
631
+ train/bedroom_0081/rgb_1072.png train/bedroom_0081/depth_1072.png train/bedroom_0081/filled_1072.png
632
+ train/bedroom_0082/rgb_1073.png train/bedroom_0082/depth_1073.png train/bedroom_0082/filled_1073.png
633
+ train/bedroom_0082/rgb_1074.png train/bedroom_0082/depth_1074.png train/bedroom_0082/filled_1074.png
634
+ train/bedroom_0086/rgb_1085.png train/bedroom_0086/depth_1085.png train/bedroom_0086/filled_1085.png
635
+ train/bedroom_0086/rgb_1086.png train/bedroom_0086/depth_1086.png train/bedroom_0086/filled_1086.png
636
+ train/bedroom_0086/rgb_1087.png train/bedroom_0086/depth_1087.png train/bedroom_0086/filled_1087.png
637
+ train/bedroom_0090/rgb_1097.png train/bedroom_0090/depth_1097.png train/bedroom_0090/filled_1097.png
638
+ train/bedroom_0094/rgb_1105.png train/bedroom_0094/depth_1105.png train/bedroom_0094/filled_1105.png
639
+ train/bedroom_0096/rgb_1110.png train/bedroom_0096/depth_1110.png train/bedroom_0096/filled_1110.png
640
+ train/bedroom_0096/rgb_1111.png train/bedroom_0096/depth_1111.png train/bedroom_0096/filled_1111.png
641
+ train/bedroom_0096/rgb_1112.png train/bedroom_0096/depth_1112.png train/bedroom_0096/filled_1112.png
642
+ train/bedroom_0097/rgb_1113.png train/bedroom_0097/depth_1113.png train/bedroom_0097/filled_1113.png
643
+ train/bedroom_0097/rgb_1114.png train/bedroom_0097/depth_1114.png train/bedroom_0097/filled_1114.png
644
+ train/bedroom_0098/rgb_1115.png train/bedroom_0098/depth_1115.png train/bedroom_0098/filled_1115.png
645
+ train/bedroom_0098/rgb_1116.png train/bedroom_0098/depth_1116.png train/bedroom_0098/filled_1116.png
646
+ train/bedroom_0100/rgb_1120.png train/bedroom_0100/depth_1120.png train/bedroom_0100/filled_1120.png
647
+ train/bedroom_0100/rgb_1121.png train/bedroom_0100/depth_1121.png train/bedroom_0100/filled_1121.png
648
+ train/bedroom_0100/rgb_1122.png train/bedroom_0100/depth_1122.png train/bedroom_0100/filled_1122.png
649
+ train/bedroom_0104/rgb_1132.png train/bedroom_0104/depth_1132.png train/bedroom_0104/filled_1132.png
650
+ train/bedroom_0104/rgb_1133.png train/bedroom_0104/depth_1133.png train/bedroom_0104/filled_1133.png
651
+ train/bedroom_0104/rgb_1134.png train/bedroom_0104/depth_1134.png train/bedroom_0104/filled_1134.png
652
+ train/bedroom_0106/rgb_1137.png train/bedroom_0106/depth_1137.png train/bedroom_0106/filled_1137.png
653
+ train/bedroom_0106/rgb_1138.png train/bedroom_0106/depth_1138.png train/bedroom_0106/filled_1138.png
654
+ train/bedroom_0106/rgb_1139.png train/bedroom_0106/depth_1139.png train/bedroom_0106/filled_1139.png
655
+ train/bedroom_0106/rgb_1140.png train/bedroom_0106/depth_1140.png train/bedroom_0106/filled_1140.png
656
+ train/bedroom_0107/rgb_1141.png train/bedroom_0107/depth_1141.png train/bedroom_0107/filled_1141.png
657
+ train/bedroom_0107/rgb_1142.png train/bedroom_0107/depth_1142.png train/bedroom_0107/filled_1142.png
658
+ train/bedroom_0107/rgb_1143.png train/bedroom_0107/depth_1143.png train/bedroom_0107/filled_1143.png
659
+ train/bedroom_0113/rgb_1159.png train/bedroom_0113/depth_1159.png train/bedroom_0113/filled_1159.png
660
+ train/bedroom_0113/rgb_1160.png train/bedroom_0113/depth_1160.png train/bedroom_0113/filled_1160.png
661
+ train/bedroom_0113/rgb_1161.png train/bedroom_0113/depth_1161.png train/bedroom_0113/filled_1161.png
662
+ train/bedroom_0116/rgb_1168.png train/bedroom_0116/depth_1168.png train/bedroom_0116/filled_1168.png
663
+ train/bedroom_0116/rgb_1169.png train/bedroom_0116/depth_1169.png train/bedroom_0116/filled_1169.png
664
+ train/bedroom_0118/rgb_1172.png train/bedroom_0118/depth_1172.png train/bedroom_0118/filled_1172.png
665
+ train/bedroom_0118/rgb_1173.png train/bedroom_0118/depth_1173.png train/bedroom_0118/filled_1173.png
666
+ train/bedroom_0120/rgb_1177.png train/bedroom_0120/depth_1177.png train/bedroom_0120/filled_1177.png
667
+ train/bedroom_0120/rgb_1178.png train/bedroom_0120/depth_1178.png train/bedroom_0120/filled_1178.png
668
+ train/bedroom_0124/rgb_1185.png train/bedroom_0124/depth_1185.png train/bedroom_0124/filled_1185.png
669
+ train/bedroom_0124/rgb_1186.png train/bedroom_0124/depth_1186.png train/bedroom_0124/filled_1186.png
670
+ train/bedroom_0125/rgb_1187.png train/bedroom_0125/depth_1187.png train/bedroom_0125/filled_1187.png
671
+ train/bedroom_0125/rgb_1188.png train/bedroom_0125/depth_1188.png train/bedroom_0125/filled_1188.png
672
+ train/bedroom_0125/rgb_1189.png train/bedroom_0125/depth_1189.png train/bedroom_0125/filled_1189.png
673
+ train/bedroom_0126/rgb_1190.png train/bedroom_0126/depth_1190.png train/bedroom_0126/filled_1190.png
674
+ train/bedroom_0126/rgb_1191.png train/bedroom_0126/depth_1191.png train/bedroom_0126/filled_1191.png
675
+ train/bedroom_0129/rgb_1197.png train/bedroom_0129/depth_1197.png train/bedroom_0129/filled_1197.png
676
+ train/bedroom_0129/rgb_1198.png train/bedroom_0129/depth_1198.png train/bedroom_0129/filled_1198.png
677
+ train/bedroom_0130/rgb_1199.png train/bedroom_0130/depth_1199.png train/bedroom_0130/filled_1199.png
678
+ train/bedroom_0130/rgb_1200.png train/bedroom_0130/depth_1200.png train/bedroom_0130/filled_1200.png
679
+ train/living_room_0029/rgb_1213.png train/living_room_0029/depth_1213.png train/living_room_0029/filled_1213.png
680
+ train/living_room_0029/rgb_1214.png train/living_room_0029/depth_1214.png train/living_room_0029/filled_1214.png
681
+ train/living_room_0029/rgb_1215.png train/living_room_0029/depth_1215.png train/living_room_0029/filled_1215.png
682
+ train/living_room_0032/rgb_1221.png train/living_room_0032/depth_1221.png train/living_room_0032/filled_1221.png
683
+ train/living_room_0032/rgb_1222.png train/living_room_0032/depth_1222.png train/living_room_0032/filled_1222.png
684
+ train/living_room_0032/rgb_1223.png train/living_room_0032/depth_1223.png train/living_room_0032/filled_1223.png
685
+ train/living_room_0033/rgb_1224.png train/living_room_0033/depth_1224.png train/living_room_0033/filled_1224.png
686
+ train/living_room_0033/rgb_1225.png train/living_room_0033/depth_1225.png train/living_room_0033/filled_1225.png
687
+ train/living_room_0035/rgb_1231.png train/living_room_0035/depth_1231.png train/living_room_0035/filled_1231.png
688
+ train/living_room_0035/rgb_1232.png train/living_room_0035/depth_1232.png train/living_room_0035/filled_1232.png
689
+ train/living_room_0037/rgb_1236.png train/living_room_0037/depth_1236.png train/living_room_0037/filled_1236.png
690
+ train/living_room_0037/rgb_1237.png train/living_room_0037/depth_1237.png train/living_room_0037/filled_1237.png
691
+ train/living_room_0038/rgb_1238.png train/living_room_0038/depth_1238.png train/living_room_0038/filled_1238.png
692
+ train/living_room_0038/rgb_1239.png train/living_room_0038/depth_1239.png train/living_room_0038/filled_1239.png
693
+ train/living_room_0038/rgb_1240.png train/living_room_0038/depth_1240.png train/living_room_0038/filled_1240.png
694
+ train/living_room_0039/rgb_1241.png train/living_room_0039/depth_1241.png train/living_room_0039/filled_1241.png
695
+ train/living_room_0039/rgb_1242.png train/living_room_0039/depth_1242.png train/living_room_0039/filled_1242.png
696
+ train/living_room_0039/rgb_1243.png train/living_room_0039/depth_1243.png train/living_room_0039/filled_1243.png
697
+ train/living_room_0040/rgb_1244.png train/living_room_0040/depth_1244.png train/living_room_0040/filled_1244.png
698
+ train/living_room_0040/rgb_1245.png train/living_room_0040/depth_1245.png train/living_room_0040/filled_1245.png
699
+ train/living_room_0040/rgb_1246.png train/living_room_0040/depth_1246.png train/living_room_0040/filled_1246.png
700
+ train/living_room_0042/rgb_1251.png train/living_room_0042/depth_1251.png train/living_room_0042/filled_1251.png
701
+ train/living_room_0042/rgb_1252.png train/living_room_0042/depth_1252.png train/living_room_0042/filled_1252.png
702
+ train/living_room_0042/rgb_1253.png train/living_room_0042/depth_1253.png train/living_room_0042/filled_1253.png
703
+ train/living_room_0046/rgb_1266.png train/living_room_0046/depth_1266.png train/living_room_0046/filled_1266.png
704
+ train/living_room_0046/rgb_1267.png train/living_room_0046/depth_1267.png train/living_room_0046/filled_1267.png
705
+ train/living_room_0046/rgb_1268.png train/living_room_0046/depth_1268.png train/living_room_0046/filled_1268.png
706
+ train/living_room_0046/rgb_1269.png train/living_room_0046/depth_1269.png train/living_room_0046/filled_1269.png
707
+ train/living_room_0046/rgb_1270.png train/living_room_0046/depth_1270.png train/living_room_0046/filled_1270.png
708
+ train/living_room_0047/rgb_1271.png train/living_room_0047/depth_1271.png train/living_room_0047/filled_1271.png
709
+ train/living_room_0047/rgb_1272.png train/living_room_0047/depth_1272.png train/living_room_0047/filled_1272.png
710
+ train/living_room_0047/rgb_1273.png train/living_room_0047/depth_1273.png train/living_room_0047/filled_1273.png
711
+ train/living_room_0047/rgb_1274.png train/living_room_0047/depth_1274.png train/living_room_0047/filled_1274.png
712
+ train/living_room_0050/rgb_1281.png train/living_room_0050/depth_1281.png train/living_room_0050/filled_1281.png
713
+ train/living_room_0050/rgb_1282.png train/living_room_0050/depth_1282.png train/living_room_0050/filled_1282.png
714
+ train/living_room_0050/rgb_1283.png train/living_room_0050/depth_1283.png train/living_room_0050/filled_1283.png
715
+ train/living_room_0050/rgb_1284.png train/living_room_0050/depth_1284.png train/living_room_0050/filled_1284.png
716
+ train/living_room_0055/rgb_1296.png train/living_room_0055/depth_1296.png train/living_room_0055/filled_1296.png
717
+ train/living_room_0058/rgb_1300.png train/living_room_0058/depth_1300.png train/living_room_0058/filled_1300.png
718
+ train/living_room_0058/rgb_1301.png train/living_room_0058/depth_1301.png train/living_room_0058/filled_1301.png
719
+ train/living_room_0062/rgb_1309.png train/living_room_0062/depth_1309.png train/living_room_0062/filled_1309.png
720
+ train/living_room_0062/rgb_1310.png train/living_room_0062/depth_1310.png train/living_room_0062/filled_1310.png
721
+ train/living_room_0062/rgb_1311.png train/living_room_0062/depth_1311.png train/living_room_0062/filled_1311.png
722
+ train/living_room_0063/rgb_1312.png train/living_room_0063/depth_1312.png train/living_room_0063/filled_1312.png
723
+ train/living_room_0063/rgb_1313.png train/living_room_0063/depth_1313.png train/living_room_0063/filled_1313.png
724
+ train/living_room_0067/rgb_1316.png train/living_room_0067/depth_1316.png train/living_room_0067/filled_1316.png
725
+ train/living_room_0068/rgb_1317.png train/living_room_0068/depth_1317.png train/living_room_0068/filled_1317.png
726
+ train/living_room_0068/rgb_1318.png train/living_room_0068/depth_1318.png train/living_room_0068/filled_1318.png
727
+ train/living_room_0068/rgb_1319.png train/living_room_0068/depth_1319.png train/living_room_0068/filled_1319.png
728
+ train/living_room_0069/rgb_1320.png train/living_room_0069/depth_1320.png train/living_room_0069/filled_1320.png
729
+ train/living_room_0069/rgb_1321.png train/living_room_0069/depth_1321.png train/living_room_0069/filled_1321.png
730
+ train/living_room_0069/rgb_1322.png train/living_room_0069/depth_1322.png train/living_room_0069/filled_1322.png
731
+ train/living_room_0069/rgb_1323.png train/living_room_0069/depth_1323.png train/living_room_0069/filled_1323.png
732
+ train/living_room_0070/rgb_1324.png train/living_room_0070/depth_1324.png train/living_room_0070/filled_1324.png
733
+ train/living_room_0070/rgb_1325.png train/living_room_0070/depth_1325.png train/living_room_0070/filled_1325.png
734
+ train/living_room_0070/rgb_1326.png train/living_room_0070/depth_1326.png train/living_room_0070/filled_1326.png
735
+ train/living_room_0071/rgb_1327.png train/living_room_0071/depth_1327.png train/living_room_0071/filled_1327.png
736
+ train/living_room_0071/rgb_1328.png train/living_room_0071/depth_1328.png train/living_room_0071/filled_1328.png
737
+ train/living_room_0078/rgb_1333.png train/living_room_0078/depth_1333.png train/living_room_0078/filled_1333.png
738
+ train/living_room_0078/rgb_1334.png train/living_room_0078/depth_1334.png train/living_room_0078/filled_1334.png
739
+ train/dining_room_0001/rgb_1341.png train/dining_room_0001/depth_1341.png train/dining_room_0001/filled_1341.png
740
+ train/dining_room_0001/rgb_1342.png train/dining_room_0001/depth_1342.png train/dining_room_0001/filled_1342.png
741
+ train/dining_room_0001/rgb_1343.png train/dining_room_0001/depth_1343.png train/dining_room_0001/filled_1343.png
742
+ train/dining_room_0001/rgb_1344.png train/dining_room_0001/depth_1344.png train/dining_room_0001/filled_1344.png
743
+ train/dining_room_0001/rgb_1345.png train/dining_room_0001/depth_1345.png train/dining_room_0001/filled_1345.png
744
+ train/dining_room_0002/rgb_1346.png train/dining_room_0002/depth_1346.png train/dining_room_0002/filled_1346.png
745
+ train/dining_room_0004/rgb_1350.png train/dining_room_0004/depth_1350.png train/dining_room_0004/filled_1350.png
746
+ train/dining_room_0004/rgb_1351.png train/dining_room_0004/depth_1351.png train/dining_room_0004/filled_1351.png
747
+ train/dining_room_0004/rgb_1352.png train/dining_room_0004/depth_1352.png train/dining_room_0004/filled_1352.png
748
+ train/dining_room_0007/rgb_1357.png train/dining_room_0007/depth_1357.png train/dining_room_0007/filled_1357.png
749
+ train/dining_room_0007/rgb_1358.png train/dining_room_0007/depth_1358.png train/dining_room_0007/filled_1358.png
750
+ train/dining_room_0007/rgb_1359.png train/dining_room_0007/depth_1359.png train/dining_room_0007/filled_1359.png
751
+ train/dining_room_0007/rgb_1360.png train/dining_room_0007/depth_1360.png train/dining_room_0007/filled_1360.png
752
+ train/dining_room_0008/rgb_1361.png train/dining_room_0008/depth_1361.png train/dining_room_0008/filled_1361.png
753
+ train/dining_room_0008/rgb_1362.png train/dining_room_0008/depth_1362.png train/dining_room_0008/filled_1362.png
754
+ train/dining_room_0008/rgb_1363.png train/dining_room_0008/depth_1363.png train/dining_room_0008/filled_1363.png
755
+ train/dining_room_0010/rgb_1366.png train/dining_room_0010/depth_1366.png train/dining_room_0010/filled_1366.png
756
+ train/dining_room_0010/rgb_1367.png train/dining_room_0010/depth_1367.png train/dining_room_0010/filled_1367.png
757
+ train/dining_room_0012/rgb_1370.png train/dining_room_0012/depth_1370.png train/dining_room_0012/filled_1370.png
758
+ train/dining_room_0012/rgb_1371.png train/dining_room_0012/depth_1371.png train/dining_room_0012/filled_1371.png
759
+ train/dining_room_0013/rgb_1372.png train/dining_room_0013/depth_1372.png train/dining_room_0013/filled_1372.png
760
+ train/dining_room_0013/rgb_1373.png train/dining_room_0013/depth_1373.png train/dining_room_0013/filled_1373.png
761
+ train/dining_room_0013/rgb_1374.png train/dining_room_0013/depth_1374.png train/dining_room_0013/filled_1374.png
762
+ train/dining_room_0013/rgb_1375.png train/dining_room_0013/depth_1375.png train/dining_room_0013/filled_1375.png
763
+ train/dining_room_0014/rgb_1376.png train/dining_room_0014/depth_1376.png train/dining_room_0014/filled_1376.png
764
+ train/dining_room_0014/rgb_1377.png train/dining_room_0014/depth_1377.png train/dining_room_0014/filled_1377.png
765
+ train/dining_room_0015/rgb_1378.png train/dining_room_0015/depth_1378.png train/dining_room_0015/filled_1378.png
766
+ train/dining_room_0015/rgb_1379.png train/dining_room_0015/depth_1379.png train/dining_room_0015/filled_1379.png
767
+ train/dining_room_0015/rgb_1380.png train/dining_room_0015/depth_1380.png train/dining_room_0015/filled_1380.png
768
+ train/dining_room_0015/rgb_1381.png train/dining_room_0015/depth_1381.png train/dining_room_0015/filled_1381.png
769
+ train/dining_room_0016/rgb_1382.png train/dining_room_0016/depth_1382.png train/dining_room_0016/filled_1382.png
770
+ train/dining_room_0016/rgb_1383.png train/dining_room_0016/depth_1383.png train/dining_room_0016/filled_1383.png
771
+ train/dining_room_0019/rgb_1392.png train/dining_room_0019/depth_1392.png train/dining_room_0019/filled_1392.png
772
+ train/dining_room_0019/rgb_1393.png train/dining_room_0019/depth_1393.png train/dining_room_0019/filled_1393.png
773
+ train/dining_room_0023/rgb_1402.png train/dining_room_0023/depth_1402.png train/dining_room_0023/filled_1402.png
774
+ train/dining_room_0023/rgb_1403.png train/dining_room_0023/depth_1403.png train/dining_room_0023/filled_1403.png
775
+ train/dining_room_0024/rgb_1404.png train/dining_room_0024/depth_1404.png train/dining_room_0024/filled_1404.png
776
+ train/dining_room_0024/rgb_1405.png train/dining_room_0024/depth_1405.png train/dining_room_0024/filled_1405.png
777
+ train/dining_room_0024/rgb_1406.png train/dining_room_0024/depth_1406.png train/dining_room_0024/filled_1406.png
778
+ train/dining_room_0028/rgb_1415.png train/dining_room_0028/depth_1415.png train/dining_room_0028/filled_1415.png
779
+ train/dining_room_0028/rgb_1416.png train/dining_room_0028/depth_1416.png train/dining_room_0028/filled_1416.png
780
+ train/dining_room_0029/rgb_1417.png train/dining_room_0029/depth_1417.png train/dining_room_0029/filled_1417.png
781
+ train/dining_room_0029/rgb_1418.png train/dining_room_0029/depth_1418.png train/dining_room_0029/filled_1418.png
782
+ train/dining_room_0029/rgb_1419.png train/dining_room_0029/depth_1419.png train/dining_room_0029/filled_1419.png
783
+ train/dining_room_0029/rgb_1420.png train/dining_room_0029/depth_1420.png train/dining_room_0029/filled_1420.png
784
+ train/dining_room_0031/rgb_1425.png train/dining_room_0031/depth_1425.png train/dining_room_0031/filled_1425.png
785
+ train/dining_room_0031/rgb_1426.png train/dining_room_0031/depth_1426.png train/dining_room_0031/filled_1426.png
786
+ train/dining_room_0031/rgb_1427.png train/dining_room_0031/depth_1427.png train/dining_room_0031/filled_1427.png
787
+ train/dining_room_0031/rgb_1428.png train/dining_room_0031/depth_1428.png train/dining_room_0031/filled_1428.png
788
+ train/dining_room_0031/rgb_1429.png train/dining_room_0031/depth_1429.png train/dining_room_0031/filled_1429.png
789
+ train/dining_room_0033/rgb_1434.png train/dining_room_0033/depth_1434.png train/dining_room_0033/filled_1434.png
790
+ train/dining_room_0033/rgb_1435.png train/dining_room_0033/depth_1435.png train/dining_room_0033/filled_1435.png
791
+ train/dining_room_0033/rgb_1436.png train/dining_room_0033/depth_1436.png train/dining_room_0033/filled_1436.png
792
+ train/dining_room_0034/rgb_1437.png train/dining_room_0034/depth_1437.png train/dining_room_0034/filled_1437.png
793
+ train/dining_room_0034/rgb_1438.png train/dining_room_0034/depth_1438.png train/dining_room_0034/filled_1438.png
794
+ train/dining_room_0034/rgb_1439.png train/dining_room_0034/depth_1439.png train/dining_room_0034/filled_1439.png
795
+ train/dining_room_0034/rgb_1440.png train/dining_room_0034/depth_1440.png train/dining_room_0034/filled_1440.png
Lotus-2/datasets/eval/depth/data_split/scannet/scannet_val_sampled_list_800_1.txt ADDED
@@ -0,0 +1,800 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scene0406_02/color/000300.jpg scene0406_02/depth/000300.png
2
+ scene0088_02/color/001100.jpg scene0088_02/depth/001100.png
3
+ scene0645_02/color/000800.jpg scene0645_02/depth/000800.png
4
+ scene0084_00/color/001900.jpg scene0084_00/depth/001900.png
5
+ scene0648_01/color/001300.jpg scene0648_01/depth/001300.png
6
+ scene0629_02/color/001300.jpg scene0629_02/depth/001300.png
7
+ scene0686_02/color/000500.jpg scene0686_02/depth/000500.png
8
+ scene0616_00/color/000700.jpg scene0616_00/depth/000700.png
9
+ scene0598_00/color/000300.jpg scene0598_00/depth/000300.png
10
+ scene0084_00/color/001300.jpg scene0084_00/depth/001300.png
11
+ scene0644_00/color/001300.jpg scene0644_00/depth/001300.png
12
+ scene0222_00/color/003000.jpg scene0222_00/depth/003000.png
13
+ scene0697_02/color/000700.jpg scene0697_02/depth/000700.png
14
+ scene0342_00/color/000500.jpg scene0342_00/depth/000500.png
15
+ scene0050_02/color/002700.jpg scene0050_02/depth/002700.png
16
+ scene0277_00/color/000700.jpg scene0277_00/depth/000700.png
17
+ scene0580_00/color/000200.jpg scene0580_00/depth/000200.png
18
+ scene0653_00/color/000700.jpg scene0653_00/depth/000700.png
19
+ scene0222_00/color/005400.jpg scene0222_00/depth/005400.png
20
+ scene0568_02/color/000400.jpg scene0568_02/depth/000400.png
21
+ scene0207_02/color/000500.jpg scene0207_02/depth/000500.png
22
+ scene0435_01/color/001800.jpg scene0435_01/depth/001800.png
23
+ scene0633_00/color/001400.jpg scene0633_00/depth/001400.png
24
+ scene0050_00/color/000800.jpg scene0050_00/depth/000800.png
25
+ scene0050_01/color/000100.jpg scene0050_01/depth/000100.png
26
+ scene0644_00/color/000100.jpg scene0644_00/depth/000100.png
27
+ scene0645_01/color/002500.jpg scene0645_01/depth/002500.png
28
+ scene0575_02/color/001600.jpg scene0575_02/depth/001600.png
29
+ scene0187_00/color/002100.jpg scene0187_00/depth/002100.png
30
+ scene0207_01/color/000200.jpg scene0207_01/depth/000200.png
31
+ scene0458_01/color/000500.jpg scene0458_01/depth/000500.png
32
+ scene0685_00/color/000400.jpg scene0685_00/depth/000400.png
33
+ scene0423_02/color/000100.jpg scene0423_02/depth/000100.png
34
+ scene0695_00/color/000400.jpg scene0695_00/depth/000400.png
35
+ scene0653_00/color/003200.jpg scene0653_00/depth/003200.png
36
+ scene0644_00/color/001000.jpg scene0644_00/depth/001000.png
37
+ scene0663_00/color/001200.jpg scene0663_00/depth/001200.png
38
+ scene0430_01/color/001500.jpg scene0430_01/depth/001500.png
39
+ scene0146_01/color/000100.jpg scene0146_01/depth/000100.png
40
+ scene0616_00/color/000100.jpg scene0616_00/depth/000100.png
41
+ scene0217_00/color/000700.jpg scene0217_00/depth/000700.png
42
+ scene0629_02/color/001100.jpg scene0629_02/depth/001100.png
43
+ scene0700_00/color/000400.jpg scene0700_00/depth/000400.png
44
+ scene0011_00/color/001900.jpg scene0011_00/depth/001900.png
45
+ scene0685_01/color/000900.jpg scene0685_01/depth/000900.png
46
+ scene0378_01/color/002000.jpg scene0378_01/depth/002000.png
47
+ scene0607_00/color/000000.jpg scene0607_00/depth/000000.png
48
+ scene0700_00/color/004100.jpg scene0700_00/depth/004100.png
49
+ scene0011_01/color/001000.jpg scene0011_01/depth/001000.png
50
+ scene0046_01/color/002300.jpg scene0046_01/depth/002300.png
51
+ scene0131_01/color/000600.jpg scene0131_01/depth/000600.png
52
+ scene0011_00/color/000000.jpg scene0011_00/depth/000000.png
53
+ scene0645_02/color/000900.jpg scene0645_02/depth/000900.png
54
+ scene0231_02/color/001400.jpg scene0231_02/depth/001400.png
55
+ scene0575_00/color/002900.jpg scene0575_00/depth/002900.png
56
+ scene0046_00/color/001800.jpg scene0046_00/depth/001800.png
57
+ scene0693_01/color/000500.jpg scene0693_01/depth/000500.png
58
+ scene0187_00/color/002200.jpg scene0187_00/depth/002200.png
59
+ scene0500_00/color/000000.jpg scene0500_00/depth/000000.png
60
+ scene0693_01/color/000600.jpg scene0693_01/depth/000600.png
61
+ scene0144_01/color/000800.jpg scene0144_01/depth/000800.png
62
+ scene0663_01/color/001400.jpg scene0663_01/depth/001400.png
63
+ scene0100_00/color/000200.jpg scene0100_00/depth/000200.png
64
+ scene0616_01/color/002700.jpg scene0616_01/depth/002700.png
65
+ scene0575_02/color/002600.jpg scene0575_02/depth/002600.png
66
+ scene0086_02/color/001100.jpg scene0086_02/depth/001100.png
67
+ scene0653_01/color/003500.jpg scene0653_01/depth/003500.png
68
+ scene0095_00/color/001400.jpg scene0095_00/depth/001400.png
69
+ scene0559_02/color/000000.jpg scene0559_02/depth/000000.png
70
+ scene0629_00/color/000000.jpg scene0629_00/depth/000000.png
71
+ scene0435_00/color/001300.jpg scene0435_00/depth/001300.png
72
+ scene0435_01/color/001700.jpg scene0435_01/depth/001700.png
73
+ scene0606_01/color/000600.jpg scene0606_01/depth/000600.png
74
+ scene0203_00/color/000900.jpg scene0203_00/depth/000900.png
75
+ scene0435_00/color/002800.jpg scene0435_00/depth/002800.png
76
+ scene0598_02/color/000700.jpg scene0598_02/depth/000700.png
77
+ scene0606_01/color/002100.jpg scene0606_01/depth/002100.png
78
+ scene0019_01/color/000200.jpg scene0019_01/depth/000200.png
79
+ scene0700_00/color/002700.jpg scene0700_00/depth/002700.png
80
+ scene0663_01/color/002100.jpg scene0663_01/depth/002100.png
81
+ scene0474_05/color/003000.jpg scene0474_05/depth/003000.png
82
+ scene0700_00/color/001500.jpg scene0700_00/depth/001500.png
83
+ scene0050_00/color/001800.jpg scene0050_00/depth/001800.png
84
+ scene0458_00/color/000700.jpg scene0458_00/depth/000700.png
85
+ scene0077_00/color/000600.jpg scene0077_00/depth/000600.png
86
+ scene0221_01/color/000700.jpg scene0221_01/depth/000700.png
87
+ scene0222_01/color/003500.jpg scene0222_01/depth/003500.png
88
+ scene0575_01/color/003000.jpg scene0575_01/depth/003000.png
89
+ scene0591_01/color/000600.jpg scene0591_01/depth/000600.png
90
+ scene0704_00/color/000500.jpg scene0704_00/depth/000500.png
91
+ scene0169_00/color/001000.jpg scene0169_00/depth/001000.png
92
+ scene0329_02/color/000200.jpg scene0329_02/depth/000200.png
93
+ scene0696_00/color/001000.jpg scene0696_00/depth/001000.png
94
+ scene0663_01/color/000600.jpg scene0663_01/depth/000600.png
95
+ scene0701_00/color/000300.jpg scene0701_00/depth/000300.png
96
+ scene0695_02/color/000000.jpg scene0695_02/depth/000000.png
97
+ scene0389_00/color/000300.jpg scene0389_00/depth/000300.png
98
+ scene0095_01/color/000600.jpg scene0095_01/depth/000600.png
99
+ scene0046_02/color/001900.jpg scene0046_02/depth/001900.png
100
+ scene0609_00/color/000600.jpg scene0609_00/depth/000600.png
101
+ scene0351_01/color/000600.jpg scene0351_01/depth/000600.png
102
+ scene0616_00/color/000400.jpg scene0616_00/depth/000400.png
103
+ scene0608_00/color/002200.jpg scene0608_00/depth/002200.png
104
+ scene0686_00/color/001200.jpg scene0686_00/depth/001200.png
105
+ scene0700_01/color/001000.jpg scene0700_01/depth/001000.png
106
+ scene0164_03/color/000500.jpg scene0164_03/depth/000500.png
107
+ scene0621_00/color/002400.jpg scene0621_00/depth/002400.png
108
+ scene0207_02/color/000600.jpg scene0207_02/depth/000600.png
109
+ scene0578_00/color/000800.jpg scene0578_00/depth/000800.png
110
+ scene0025_01/color/001100.jpg scene0025_01/depth/001100.png
111
+ scene0353_00/color/002600.jpg scene0353_00/depth/002600.png
112
+ scene0629_00/color/000900.jpg scene0629_00/depth/000900.png
113
+ scene0427_00/color/000200.jpg scene0427_00/depth/000200.png
114
+ scene0430_00/color/002300.jpg scene0430_00/depth/002300.png
115
+ scene0222_01/color/002400.jpg scene0222_01/depth/002400.png
116
+ scene0164_00/color/000000.jpg scene0164_00/depth/000000.png
117
+ scene0355_00/color/000300.jpg scene0355_00/depth/000300.png
118
+ scene0435_01/color/000800.jpg scene0435_01/depth/000800.png
119
+ scene0423_00/color/000200.jpg scene0423_00/depth/000200.png
120
+ scene0050_02/color/002300.jpg scene0050_02/depth/002300.png
121
+ scene0695_03/color/000400.jpg scene0695_03/depth/000400.png
122
+ scene0462_00/color/000200.jpg scene0462_00/depth/000200.png
123
+ scene0549_00/color/000600.jpg scene0549_00/depth/000600.png
124
+ scene0050_00/color/002400.jpg scene0050_00/depth/002400.png
125
+ scene0187_01/color/001600.jpg scene0187_01/depth/001600.png
126
+ scene0693_00/color/001200.jpg scene0693_00/depth/001200.png
127
+ scene0568_00/color/000900.jpg scene0568_00/depth/000900.png
128
+ scene0246_00/color/002200.jpg scene0246_00/depth/002200.png
129
+ scene0606_02/color/002300.jpg scene0606_02/depth/002300.png
130
+ scene0307_00/color/001200.jpg scene0307_00/depth/001200.png
131
+ scene0608_02/color/000700.jpg scene0608_02/depth/000700.png
132
+ scene0574_00/color/000100.jpg scene0574_00/depth/000100.png
133
+ scene0696_02/color/000500.jpg scene0696_02/depth/000500.png
134
+ scene0606_00/color/000700.jpg scene0606_00/depth/000700.png
135
+ scene0695_02/color/000900.jpg scene0695_02/depth/000900.png
136
+ scene0203_02/color/001000.jpg scene0203_02/depth/001000.png
137
+ scene0693_02/color/000600.jpg scene0693_02/depth/000600.png
138
+ scene0249_00/color/000500.jpg scene0249_00/depth/000500.png
139
+ scene0697_01/color/000800.jpg scene0697_01/depth/000800.png
140
+ scene0146_02/color/001000.jpg scene0146_02/depth/001000.png
141
+ scene0663_01/color/001000.jpg scene0663_01/depth/001000.png
142
+ scene0426_00/color/000300.jpg scene0426_00/depth/000300.png
143
+ scene0146_01/color/000000.jpg scene0146_01/depth/000000.png
144
+ scene0583_01/color/000700.jpg scene0583_01/depth/000700.png
145
+ scene0494_00/color/000600.jpg scene0494_00/depth/000600.png
146
+ scene0608_00/color/001700.jpg scene0608_00/depth/001700.png
147
+ scene0025_01/color/001600.jpg scene0025_01/depth/001600.png
148
+ scene0553_02/color/000000.jpg scene0553_02/depth/000000.png
149
+ scene0088_03/color/000100.jpg scene0088_03/depth/000100.png
150
+ scene0357_00/color/000300.jpg scene0357_00/depth/000300.png
151
+ scene0088_02/color/001600.jpg scene0088_02/depth/001600.png
152
+ scene0474_03/color/000500.jpg scene0474_03/depth/000500.png
153
+ scene0430_01/color/000700.jpg scene0430_01/depth/000700.png
154
+ scene0430_00/color/002200.jpg scene0430_00/depth/002200.png
155
+ scene0645_01/color/004000.jpg scene0645_01/depth/004000.png
156
+ scene0616_00/color/001900.jpg scene0616_00/depth/001900.png
157
+ scene0575_00/color/001500.jpg scene0575_00/depth/001500.png
158
+ scene0382_00/color/000000.jpg scene0382_00/depth/000000.png
159
+ scene0474_01/color/001500.jpg scene0474_01/depth/001500.png
160
+ scene0629_01/color/002000.jpg scene0629_01/depth/002000.png
161
+ scene0144_00/color/000300.jpg scene0144_00/depth/000300.png
162
+ scene0663_00/color/002900.jpg scene0663_00/depth/002900.png
163
+ scene0678_02/color/001200.jpg scene0678_02/depth/001200.png
164
+ scene0664_02/color/001100.jpg scene0664_02/depth/001100.png
165
+ scene0678_02/color/000000.jpg scene0678_02/depth/000000.png
166
+ scene0699_00/color/002000.jpg scene0699_00/depth/002000.png
167
+ scene0655_01/color/000600.jpg scene0655_01/depth/000600.png
168
+ scene0088_02/color/001300.jpg scene0088_02/depth/001300.png
169
+ scene0435_03/color/000200.jpg scene0435_03/depth/000200.png
170
+ scene0591_02/color/002000.jpg scene0591_02/depth/002000.png
171
+ scene0357_01/color/000200.jpg scene0357_01/depth/000200.png
172
+ scene0435_00/color/002100.jpg scene0435_00/depth/002100.png
173
+ scene0025_01/color/001400.jpg scene0025_01/depth/001400.png
174
+ scene0353_00/color/000300.jpg scene0353_00/depth/000300.png
175
+ scene0527_00/color/000000.jpg scene0527_00/depth/000000.png
176
+ scene0606_01/color/002200.jpg scene0606_01/depth/002200.png
177
+ scene0609_02/color/000900.jpg scene0609_02/depth/000900.png
178
+ scene0702_02/color/000000.jpg scene0702_02/depth/000000.png
179
+ scene0580_01/color/003100.jpg scene0580_01/depth/003100.png
180
+ scene0663_01/color/001600.jpg scene0663_01/depth/001600.png
181
+ scene0221_01/color/000300.jpg scene0221_01/depth/000300.png
182
+ scene0015_00/color/001900.jpg scene0015_00/depth/001900.png
183
+ scene0382_01/color/000600.jpg scene0382_01/depth/000600.png
184
+ scene0621_00/color/000800.jpg scene0621_00/depth/000800.png
185
+ scene0535_00/color/000100.jpg scene0535_00/depth/000100.png
186
+ scene0378_00/color/000300.jpg scene0378_00/depth/000300.png
187
+ scene0575_00/color/000500.jpg scene0575_00/depth/000500.png
188
+ scene0187_00/color/000000.jpg scene0187_00/depth/000000.png
189
+ scene0307_00/color/000500.jpg scene0307_00/depth/000500.png
190
+ scene0011_01/color/000000.jpg scene0011_01/depth/000000.png
191
+ scene0249_00/color/000000.jpg scene0249_00/depth/000000.png
192
+ scene0356_00/color/000800.jpg scene0356_00/depth/000800.png
193
+ scene0426_02/color/000900.jpg scene0426_02/depth/000900.png
194
+ scene0697_03/color/002000.jpg scene0697_03/depth/002000.png
195
+ scene0100_02/color/000000.jpg scene0100_02/depth/000000.png
196
+ scene0695_03/color/001200.jpg scene0695_03/depth/001200.png
197
+ scene0338_01/color/000000.jpg scene0338_01/depth/000000.png
198
+ scene0088_02/color/000100.jpg scene0088_02/depth/000100.png
199
+ scene0606_00/color/000600.jpg scene0606_00/depth/000600.png
200
+ scene0598_00/color/000500.jpg scene0598_00/depth/000500.png
201
+ scene0382_01/color/000800.jpg scene0382_01/depth/000800.png
202
+ scene0580_01/color/000900.jpg scene0580_01/depth/000900.png
203
+ scene0231_02/color/001800.jpg scene0231_02/depth/001800.png
204
+ scene0196_00/color/001000.jpg scene0196_00/depth/001000.png
205
+ scene0334_00/color/000100.jpg scene0334_00/depth/000100.png
206
+ scene0474_03/color/000700.jpg scene0474_03/depth/000700.png
207
+ scene0591_02/color/001600.jpg scene0591_02/depth/001600.png
208
+ scene0578_00/color/000300.jpg scene0578_00/depth/000300.png
209
+ scene0695_03/color/002300.jpg scene0695_03/depth/002300.png
210
+ scene0695_02/color/000200.jpg scene0695_02/depth/000200.png
211
+ scene0645_02/color/002500.jpg scene0645_02/depth/002500.png
212
+ scene0144_00/color/001000.jpg scene0144_00/depth/001000.png
213
+ scene0574_02/color/000100.jpg scene0574_02/depth/000100.png
214
+ scene0580_01/color/003300.jpg scene0580_01/depth/003300.png
215
+ scene0304_00/color/001600.jpg scene0304_00/depth/001600.png
216
+ scene0377_02/color/000700.jpg scene0377_02/depth/000700.png
217
+ scene0663_01/color/001100.jpg scene0663_01/depth/001100.png
218
+ scene0353_02/color/000800.jpg scene0353_02/depth/000800.png
219
+ scene0701_01/color/000500.jpg scene0701_01/depth/000500.png
220
+ scene0355_00/color/000700.jpg scene0355_00/depth/000700.png
221
+ scene0665_00/color/000400.jpg scene0665_00/depth/000400.png
222
+ scene0665_00/color/000100.jpg scene0665_00/depth/000100.png
223
+ scene0277_00/color/000900.jpg scene0277_00/depth/000900.png
224
+ scene0329_00/color/000000.jpg scene0329_00/depth/000000.png
225
+ scene0231_00/color/001200.jpg scene0231_00/depth/001200.png
226
+ scene0307_02/color/000100.jpg scene0307_02/depth/000100.png
227
+ scene0558_02/color/000800.jpg scene0558_02/depth/000800.png
228
+ scene0474_01/color/000000.jpg scene0474_01/depth/000000.png
229
+ scene0685_01/color/000700.jpg scene0685_01/depth/000700.png
230
+ scene0100_01/color/000600.jpg scene0100_01/depth/000600.png
231
+ scene0685_00/color/000200.jpg scene0685_00/depth/000200.png
232
+ scene0580_01/color/002200.jpg scene0580_01/depth/002200.png
233
+ scene0430_00/color/001500.jpg scene0430_00/depth/001500.png
234
+ scene0606_01/color/002600.jpg scene0606_01/depth/002600.png
235
+ scene0580_00/color/004700.jpg scene0580_00/depth/004700.png
236
+ scene0474_04/color/000800.jpg scene0474_04/depth/000800.png
237
+ scene0015_00/color/000200.jpg scene0015_00/depth/000200.png
238
+ scene0046_02/color/001400.jpg scene0046_02/depth/001400.png
239
+ scene0426_01/color/000800.jpg scene0426_01/depth/000800.png
240
+ scene0256_02/color/000900.jpg scene0256_02/depth/000900.png
241
+ scene0580_01/color/002700.jpg scene0580_01/depth/002700.png
242
+ scene0353_02/color/001300.jpg scene0353_02/depth/001300.png
243
+ scene0427_00/color/000900.jpg scene0427_00/depth/000900.png
244
+ scene0595_00/color/000600.jpg scene0595_00/depth/000600.png
245
+ scene0608_01/color/001900.jpg scene0608_01/depth/001900.png
246
+ scene0643_00/color/001800.jpg scene0643_00/depth/001800.png
247
+ scene0629_00/color/001600.jpg scene0629_00/depth/001600.png
248
+ scene0608_00/color/002000.jpg scene0608_00/depth/002000.png
249
+ scene0629_02/color/001400.jpg scene0629_02/depth/001400.png
250
+ scene0697_03/color/000400.jpg scene0697_03/depth/000400.png
251
+ scene0207_00/color/000600.jpg scene0207_00/depth/000600.png
252
+ scene0652_00/color/001000.jpg scene0652_00/depth/001000.png
253
+ scene0011_00/color/001200.jpg scene0011_00/depth/001200.png
254
+ scene0583_00/color/000600.jpg scene0583_00/depth/000600.png
255
+ scene0050_02/color/000000.jpg scene0050_02/depth/000000.png
256
+ scene0304_00/color/001300.jpg scene0304_00/depth/001300.png
257
+ scene0100_01/color/000700.jpg scene0100_01/depth/000700.png
258
+ scene0574_00/color/000600.jpg scene0574_00/depth/000600.png
259
+ scene0231_00/color/000100.jpg scene0231_00/depth/000100.png
260
+ scene0256_02/color/000600.jpg scene0256_02/depth/000600.png
261
+ scene0518_00/color/000200.jpg scene0518_00/depth/000200.png
262
+ scene0412_00/color/000800.jpg scene0412_00/depth/000800.png
263
+ scene0207_00/color/000900.jpg scene0207_00/depth/000900.png
264
+ scene0663_00/color/000100.jpg scene0663_00/depth/000100.png
265
+ scene0645_01/color/003700.jpg scene0645_01/depth/003700.png
266
+ scene0246_00/color/000900.jpg scene0246_00/depth/000900.png
267
+ scene0088_03/color/000200.jpg scene0088_03/depth/000200.png
268
+ scene0149_00/color/000900.jpg scene0149_00/depth/000900.png
269
+ scene0458_00/color/000000.jpg scene0458_00/depth/000000.png
270
+ scene0084_02/color/000300.jpg scene0084_02/depth/000300.png
271
+ scene0553_01/color/000600.jpg scene0553_01/depth/000600.png
272
+ scene0474_01/color/000500.jpg scene0474_01/depth/000500.png
273
+ scene0149_00/color/000700.jpg scene0149_00/depth/000700.png
274
+ scene0256_01/color/001000.jpg scene0256_01/depth/001000.png
275
+ scene0196_00/color/001100.jpg scene0196_00/depth/001100.png
276
+ scene0461_00/color/000300.jpg scene0461_00/depth/000300.png
277
+ scene0334_02/color/001000.jpg scene0334_02/depth/001000.png
278
+ scene0426_00/color/000900.jpg scene0426_00/depth/000900.png
279
+ scene0435_00/color/002000.jpg scene0435_00/depth/002000.png
280
+ scene0607_01/color/000200.jpg scene0607_01/depth/000200.png
281
+ scene0222_00/color/002200.jpg scene0222_00/depth/002200.png
282
+ scene0621_00/color/000300.jpg scene0621_00/depth/000300.png
283
+ scene0377_01/color/000700.jpg scene0377_01/depth/000700.png
284
+ scene0015_00/color/001200.jpg scene0015_00/depth/001200.png
285
+ scene0697_00/color/000500.jpg scene0697_00/depth/000500.png
286
+ scene0591_02/color/000700.jpg scene0591_02/depth/000700.png
287
+ scene0474_02/color/001100.jpg scene0474_02/depth/001100.png
288
+ scene0518_00/color/001400.jpg scene0518_00/depth/001400.png
289
+ scene0559_02/color/000300.jpg scene0559_02/depth/000300.png
290
+ scene0685_01/color/000300.jpg scene0685_01/depth/000300.png
291
+ scene0568_02/color/001200.jpg scene0568_02/depth/001200.png
292
+ scene0695_02/color/000300.jpg scene0695_02/depth/000300.png
293
+ scene0231_02/color/000800.jpg scene0231_02/depth/000800.png
294
+ scene0050_00/color/003200.jpg scene0050_00/depth/003200.png
295
+ scene0700_00/color/001600.jpg scene0700_00/depth/001600.png
296
+ scene0599_02/color/002100.jpg scene0599_02/depth/002100.png
297
+ scene0591_01/color/001500.jpg scene0591_01/depth/001500.png
298
+ scene0648_01/color/000700.jpg scene0648_01/depth/000700.png
299
+ scene0063_00/color/000300.jpg scene0063_00/depth/000300.png
300
+ scene0406_00/color/000600.jpg scene0406_00/depth/000600.png
301
+ scene0046_01/color/000000.jpg scene0046_01/depth/000000.png
302
+ scene0329_00/color/000500.jpg scene0329_00/depth/000500.png
303
+ scene0222_00/color/002100.jpg scene0222_00/depth/002100.png
304
+ scene0580_01/color/000300.jpg scene0580_01/depth/000300.png
305
+ scene0169_00/color/000000.jpg scene0169_00/depth/000000.png
306
+ scene0690_00/color/000700.jpg scene0690_00/depth/000700.png
307
+ scene0618_00/color/000000.jpg scene0618_00/depth/000000.png
308
+ scene0621_00/color/001000.jpg scene0621_00/depth/001000.png
309
+ scene0697_01/color/001000.jpg scene0697_01/depth/001000.png
310
+ scene0696_01/color/001500.jpg scene0696_01/depth/001500.png
311
+ scene0030_01/color/000200.jpg scene0030_01/depth/000200.png
312
+ scene0435_03/color/001000.jpg scene0435_03/depth/001000.png
313
+ scene0699_00/color/001500.jpg scene0699_00/depth/001500.png
314
+ scene0046_02/color/002500.jpg scene0046_02/depth/002500.png
315
+ scene0618_00/color/000800.jpg scene0618_00/depth/000800.png
316
+ scene0025_01/color/000100.jpg scene0025_01/depth/000100.png
317
+ scene0700_01/color/001500.jpg scene0700_01/depth/001500.png
318
+ scene0652_00/color/000100.jpg scene0652_00/depth/000100.png
319
+ scene0356_00/color/001100.jpg scene0356_00/depth/001100.png
320
+ scene0652_00/color/000300.jpg scene0652_00/depth/000300.png
321
+ scene0277_00/color/000300.jpg scene0277_00/depth/000300.png
322
+ scene0527_00/color/000400.jpg scene0527_00/depth/000400.png
323
+ scene0671_00/color/000400.jpg scene0671_00/depth/000400.png
324
+ scene0663_02/color/002300.jpg scene0663_02/depth/002300.png
325
+ scene0700_00/color/003100.jpg scene0700_00/depth/003100.png
326
+ scene0355_00/color/000400.jpg scene0355_00/depth/000400.png
327
+ scene0187_00/color/000600.jpg scene0187_00/depth/000600.png
328
+ scene0599_01/color/000300.jpg scene0599_01/depth/000300.png
329
+ scene0458_01/color/001100.jpg scene0458_01/depth/001100.png
330
+ scene0435_02/color/000800.jpg scene0435_02/depth/000800.png
331
+ scene0050_02/color/000900.jpg scene0050_02/depth/000900.png
332
+ scene0015_00/color/000000.jpg scene0015_00/depth/000000.png
333
+ scene0670_00/color/002300.jpg scene0670_00/depth/002300.png
334
+ scene0474_04/color/000700.jpg scene0474_04/depth/000700.png
335
+ scene0426_01/color/000700.jpg scene0426_01/depth/000700.png
336
+ scene0550_00/color/001500.jpg scene0550_00/depth/001500.png
337
+ scene0222_01/color/002000.jpg scene0222_01/depth/002000.png
338
+ scene0653_01/color/000500.jpg scene0653_01/depth/000500.png
339
+ scene0699_00/color/002100.jpg scene0699_00/depth/002100.png
340
+ scene0575_01/color/001900.jpg scene0575_01/depth/001900.png
341
+ scene0653_01/color/001900.jpg scene0653_01/depth/001900.png
342
+ scene0575_02/color/000400.jpg scene0575_02/depth/000400.png
343
+ scene0568_00/color/001100.jpg scene0568_00/depth/001100.png
344
+ scene0580_01/color/000800.jpg scene0580_01/depth/000800.png
345
+ scene0616_01/color/003000.jpg scene0616_01/depth/003000.png
346
+ scene0222_00/color/000500.jpg scene0222_00/depth/000500.png
347
+ scene0648_01/color/000500.jpg scene0648_01/depth/000500.png
348
+ scene0583_01/color/001200.jpg scene0583_01/depth/001200.png
349
+ scene0351_01/color/000700.jpg scene0351_01/depth/000700.png
350
+ scene0583_02/color/000500.jpg scene0583_02/depth/000500.png
351
+ scene0222_00/color/001800.jpg scene0222_00/depth/001800.png
352
+ scene0307_01/color/001500.jpg scene0307_01/depth/001500.png
353
+ scene0678_00/color/000800.jpg scene0678_00/depth/000800.png
354
+ scene0430_01/color/000500.jpg scene0430_01/depth/000500.png
355
+ scene0164_01/color/000200.jpg scene0164_01/depth/000200.png
356
+ scene0608_01/color/001600.jpg scene0608_01/depth/001600.png
357
+ scene0427_00/color/000000.jpg scene0427_00/depth/000000.png
358
+ scene0488_00/color/000200.jpg scene0488_00/depth/000200.png
359
+ scene0559_02/color/000100.jpg scene0559_02/depth/000100.png
360
+ scene0686_02/color/000000.jpg scene0686_02/depth/000000.png
361
+ scene0458_00/color/000400.jpg scene0458_00/depth/000400.png
362
+ scene0086_00/color/000600.jpg scene0086_00/depth/000600.png
363
+ scene0050_02/color/000100.jpg scene0050_02/depth/000100.png
364
+ scene0011_01/color/000200.jpg scene0011_01/depth/000200.png
365
+ scene0552_01/color/000000.jpg scene0552_01/depth/000000.png
366
+ scene0606_01/color/000200.jpg scene0606_01/depth/000200.png
367
+ scene0257_00/color/000500.jpg scene0257_00/depth/000500.png
368
+ scene0518_00/color/000500.jpg scene0518_00/depth/000500.png
369
+ scene0378_00/color/001400.jpg scene0378_00/depth/001400.png
370
+ scene0644_00/color/001200.jpg scene0644_00/depth/001200.png
371
+ scene0686_00/color/000800.jpg scene0686_00/depth/000800.png
372
+ scene0697_03/color/001800.jpg scene0697_03/depth/001800.png
373
+ scene0406_02/color/000600.jpg scene0406_02/depth/000600.png
374
+ scene0697_02/color/000500.jpg scene0697_02/depth/000500.png
375
+ scene0608_00/color/000600.jpg scene0608_00/depth/000600.png
376
+ scene0695_01/color/002000.jpg scene0695_01/depth/002000.png
377
+ scene0222_00/color/003900.jpg scene0222_00/depth/003900.png
378
+ scene0378_00/color/000800.jpg scene0378_00/depth/000800.png
379
+ scene0697_03/color/000600.jpg scene0697_03/depth/000600.png
380
+ scene0353_00/color/001500.jpg scene0353_00/depth/001500.png
381
+ scene0558_02/color/000000.jpg scene0558_02/depth/000000.png
382
+ scene0300_00/color/001700.jpg scene0300_00/depth/001700.png
383
+ scene0663_01/color/001300.jpg scene0663_01/depth/001300.png
384
+ scene0616_00/color/001600.jpg scene0616_00/depth/001600.png
385
+ scene0629_00/color/002400.jpg scene0629_00/depth/002400.png
386
+ scene0304_00/color/001400.jpg scene0304_00/depth/001400.png
387
+ scene0389_00/color/001000.jpg scene0389_00/depth/001000.png
388
+ scene0231_00/color/004300.jpg scene0231_00/depth/004300.png
389
+ scene0088_01/color/000000.jpg scene0088_01/depth/000000.png
390
+ scene0435_03/color/000500.jpg scene0435_03/depth/000500.png
391
+ scene0663_00/color/000600.jpg scene0663_00/depth/000600.png
392
+ scene0231_01/color/002400.jpg scene0231_01/depth/002400.png
393
+ scene0678_01/color/000700.jpg scene0678_01/depth/000700.png
394
+ scene0353_02/color/000600.jpg scene0353_02/depth/000600.png
395
+ scene0081_02/color/000800.jpg scene0081_02/depth/000800.png
396
+ scene0578_00/color/001000.jpg scene0578_00/depth/001000.png
397
+ scene0084_00/color/000800.jpg scene0084_00/depth/000800.png
398
+ scene0081_01/color/000000.jpg scene0081_01/depth/000000.png
399
+ scene0329_02/color/000900.jpg scene0329_02/depth/000900.png
400
+ scene0633_01/color/000200.jpg scene0633_01/depth/000200.png
401
+ scene0307_00/color/001400.jpg scene0307_00/depth/001400.png
402
+ scene0435_02/color/001500.jpg scene0435_02/depth/001500.png
403
+ scene0355_01/color/000000.jpg scene0355_01/depth/000000.png
404
+ scene0700_01/color/001400.jpg scene0700_01/depth/001400.png
405
+ scene0647_00/color/000700.jpg scene0647_00/depth/000700.png
406
+ scene0474_05/color/001800.jpg scene0474_05/depth/001800.png
407
+ scene0606_02/color/000800.jpg scene0606_02/depth/000800.png
408
+ scene0684_01/color/000200.jpg scene0684_01/depth/000200.png
409
+ scene0678_02/color/001900.jpg scene0678_02/depth/001900.png
410
+ scene0474_03/color/003000.jpg scene0474_03/depth/003000.png
411
+ scene0222_01/color/003600.jpg scene0222_01/depth/003600.png
412
+ scene0458_01/color/000600.jpg scene0458_01/depth/000600.png
413
+ scene0678_01/color/000500.jpg scene0678_01/depth/000500.png
414
+ scene0208_00/color/002100.jpg scene0208_00/depth/002100.png
415
+ scene0030_01/color/000600.jpg scene0030_01/depth/000600.png
416
+ scene0583_01/color/000300.jpg scene0583_01/depth/000300.png
417
+ scene0591_02/color/000600.jpg scene0591_02/depth/000600.png
418
+ scene0599_02/color/001700.jpg scene0599_02/depth/001700.png
419
+ scene0580_00/color/001000.jpg scene0580_00/depth/001000.png
420
+ scene0599_02/color/001400.jpg scene0599_02/depth/001400.png
421
+ scene0064_01/color/000100.jpg scene0064_01/depth/000100.png
422
+ scene0187_01/color/001300.jpg scene0187_01/depth/001300.png
423
+ scene0257_00/color/001000.jpg scene0257_00/depth/001000.png
424
+ scene0046_00/color/000800.jpg scene0046_00/depth/000800.png
425
+ scene0558_01/color/001000.jpg scene0558_01/depth/001000.png
426
+ scene0030_01/color/000800.jpg scene0030_01/depth/000800.png
427
+ scene0607_00/color/000600.jpg scene0607_00/depth/000600.png
428
+ scene0704_00/color/001900.jpg scene0704_00/depth/001900.png
429
+ scene0599_01/color/000000.jpg scene0599_01/depth/000000.png
430
+ scene0084_01/color/000200.jpg scene0084_01/depth/000200.png
431
+ scene0653_00/color/003700.jpg scene0653_00/depth/003700.png
432
+ scene0025_02/color/000400.jpg scene0025_02/depth/000400.png
433
+ scene0553_00/color/001100.jpg scene0553_00/depth/001100.png
434
+ scene0300_01/color/001200.jpg scene0300_01/depth/001200.png
435
+ scene0697_00/color/001800.jpg scene0697_00/depth/001800.png
436
+ scene0435_01/color/002800.jpg scene0435_01/depth/002800.png
437
+ scene0050_01/color/003200.jpg scene0050_01/depth/003200.png
438
+ scene0606_01/color/002800.jpg scene0606_01/depth/002800.png
439
+ scene0607_01/color/000100.jpg scene0607_01/depth/000100.png
440
+ scene0575_00/color/000300.jpg scene0575_00/depth/000300.png
441
+ scene0671_01/color/000100.jpg scene0671_01/depth/000100.png
442
+ scene0598_02/color/000000.jpg scene0598_02/depth/000000.png
443
+ scene0678_02/color/001400.jpg scene0678_02/depth/001400.png
444
+ scene0356_01/color/000800.jpg scene0356_01/depth/000800.png
445
+ scene0701_02/color/000300.jpg scene0701_02/depth/000300.png
446
+ scene0651_00/color/000800.jpg scene0651_00/depth/000800.png
447
+ scene0169_01/color/000200.jpg scene0169_01/depth/000200.png
448
+ scene0580_00/color/002600.jpg scene0580_00/depth/002600.png
449
+ scene0208_00/color/000600.jpg scene0208_00/depth/000600.png
450
+ scene0558_01/color/001200.jpg scene0558_01/depth/001200.png
451
+ scene0645_01/color/000800.jpg scene0645_01/depth/000800.png
452
+ scene0653_01/color/003000.jpg scene0653_01/depth/003000.png
453
+ scene0030_00/color/000800.jpg scene0030_00/depth/000800.png
454
+ scene0011_00/color/001800.jpg scene0011_00/depth/001800.png
455
+ scene0518_00/color/001000.jpg scene0518_00/depth/001000.png
456
+ scene0307_02/color/001800.jpg scene0307_02/depth/001800.png
457
+ scene0353_00/color/000000.jpg scene0353_00/depth/000000.png
458
+ scene0550_00/color/000500.jpg scene0550_00/depth/000500.png
459
+ scene0685_02/color/000900.jpg scene0685_02/depth/000900.png
460
+ scene0702_00/color/000300.jpg scene0702_00/depth/000300.png
461
+ scene0648_00/color/003900.jpg scene0648_00/depth/003900.png
462
+ scene0423_00/color/000300.jpg scene0423_00/depth/000300.png
463
+ scene0664_01/color/000000.jpg scene0664_01/depth/000000.png
464
+ scene0670_01/color/000400.jpg scene0670_01/depth/000400.png
465
+ scene0088_02/color/002100.jpg scene0088_02/depth/002100.png
466
+ scene0144_01/color/000400.jpg scene0144_01/depth/000400.png
467
+ scene0591_02/color/000300.jpg scene0591_02/depth/000300.png
468
+ scene0686_01/color/000700.jpg scene0686_01/depth/000700.png
469
+ scene0084_01/color/001200.jpg scene0084_01/depth/001200.png
470
+ scene0574_00/color/000800.jpg scene0574_00/depth/000800.png
471
+ scene0609_02/color/001600.jpg scene0609_02/depth/001600.png
472
+ scene0500_01/color/001600.jpg scene0500_01/depth/001600.png
473
+ scene0231_02/color/002800.jpg scene0231_02/depth/002800.png
474
+ scene0598_01/color/000300.jpg scene0598_01/depth/000300.png
475
+ scene0629_01/color/001900.jpg scene0629_01/depth/001900.png
476
+ scene0578_00/color/000000.jpg scene0578_00/depth/000000.png
477
+ scene0334_00/color/000200.jpg scene0334_00/depth/000200.png
478
+ scene0084_01/color/001300.jpg scene0084_01/depth/001300.png
479
+ scene0377_01/color/000400.jpg scene0377_01/depth/000400.png
480
+ scene0608_01/color/001800.jpg scene0608_01/depth/001800.png
481
+ scene0356_02/color/000300.jpg scene0356_02/depth/000300.png
482
+ scene0025_00/color/001600.jpg scene0025_00/depth/001600.png
483
+ scene0249_00/color/000300.jpg scene0249_00/depth/000300.png
484
+ scene0208_00/color/001700.jpg scene0208_00/depth/001700.png
485
+ scene0653_01/color/000000.jpg scene0653_01/depth/000000.png
486
+ scene0146_02/color/000200.jpg scene0146_02/depth/000200.png
487
+ scene0351_00/color/000800.jpg scene0351_00/depth/000800.png
488
+ scene0593_00/color/000100.jpg scene0593_00/depth/000100.png
489
+ scene0046_02/color/000200.jpg scene0046_02/depth/000200.png
490
+ scene0606_02/color/000100.jpg scene0606_02/depth/000100.png
491
+ scene0231_00/color/001000.jpg scene0231_00/depth/001000.png
492
+ scene0300_01/color/000500.jpg scene0300_01/depth/000500.png
493
+ scene0196_00/color/000100.jpg scene0196_00/depth/000100.png
494
+ scene0377_00/color/000600.jpg scene0377_00/depth/000600.png
495
+ scene0256_02/color/001100.jpg scene0256_02/depth/001100.png
496
+ scene0678_01/color/001900.jpg scene0678_01/depth/001900.png
497
+ scene0700_00/color/000600.jpg scene0700_00/depth/000600.png
498
+ scene0629_02/color/000700.jpg scene0629_02/depth/000700.png
499
+ scene0643_00/color/000200.jpg scene0643_00/depth/000200.png
500
+ scene0050_01/color/002400.jpg scene0050_01/depth/002400.png
501
+ scene0356_00/color/000900.jpg scene0356_00/depth/000900.png
502
+ scene0704_01/color/001200.jpg scene0704_01/depth/001200.png
503
+ scene0575_00/color/000900.jpg scene0575_00/depth/000900.png
504
+ scene0583_00/color/001000.jpg scene0583_00/depth/001000.png
505
+ scene0591_00/color/001700.jpg scene0591_00/depth/001700.png
506
+ scene0164_02/color/000200.jpg scene0164_02/depth/000200.png
507
+ scene0664_02/color/000600.jpg scene0664_02/depth/000600.png
508
+ scene0575_01/color/002900.jpg scene0575_01/depth/002900.png
509
+ scene0328_00/color/000500.jpg scene0328_00/depth/000500.png
510
+ scene0671_01/color/000500.jpg scene0671_01/depth/000500.png
511
+ scene0356_00/color/001300.jpg scene0356_00/depth/001300.png
512
+ scene0580_00/color/001400.jpg scene0580_00/depth/001400.png
513
+ scene0222_00/color/003500.jpg scene0222_00/depth/003500.png
514
+ scene0015_00/color/001300.jpg scene0015_00/depth/001300.png
515
+ scene0609_02/color/000500.jpg scene0609_02/depth/000500.png
516
+ scene0645_02/color/002100.jpg scene0645_02/depth/002100.png
517
+ scene0304_00/color/000200.jpg scene0304_00/depth/000200.png
518
+ scene0598_01/color/000100.jpg scene0598_01/depth/000100.png
519
+ scene0609_00/color/000200.jpg scene0609_00/depth/000200.png
520
+ scene0700_01/color/000800.jpg scene0700_01/depth/000800.png
521
+ scene0686_02/color/000700.jpg scene0686_02/depth/000700.png
522
+ scene0553_01/color/000500.jpg scene0553_01/depth/000500.png
523
+ scene0378_00/color/001500.jpg scene0378_00/depth/001500.png
524
+ scene0550_00/color/003200.jpg scene0550_00/depth/003200.png
525
+ scene0583_01/color/000200.jpg scene0583_01/depth/000200.png
526
+ scene0550_00/color/003500.jpg scene0550_00/depth/003500.png
527
+ scene0131_02/color/000100.jpg scene0131_02/depth/000100.png
528
+ scene0131_00/color/000400.jpg scene0131_00/depth/000400.png
529
+ scene0257_00/color/001100.jpg scene0257_00/depth/001100.png
530
+ scene0406_00/color/000900.jpg scene0406_00/depth/000900.png
531
+ scene0663_01/color/002200.jpg scene0663_01/depth/002200.png
532
+ scene0307_00/color/000400.jpg scene0307_00/depth/000400.png
533
+ scene0030_00/color/000400.jpg scene0030_00/depth/000400.png
534
+ scene0131_00/color/000300.jpg scene0131_00/depth/000300.png
535
+ scene0084_02/color/000200.jpg scene0084_02/depth/000200.png
536
+ scene0030_00/color/001200.jpg scene0030_00/depth/001200.png
537
+ scene0697_03/color/000500.jpg scene0697_03/depth/000500.png
538
+ scene0653_00/color/003000.jpg scene0653_00/depth/003000.png
539
+ scene0086_02/color/000800.jpg scene0086_02/depth/000800.png
540
+ scene0146_01/color/000800.jpg scene0146_01/depth/000800.png
541
+ scene0277_01/color/000500.jpg scene0277_01/depth/000500.png
542
+ scene0353_00/color/001600.jpg scene0353_00/depth/001600.png
543
+ scene0046_01/color/002200.jpg scene0046_01/depth/002200.png
544
+ scene0222_00/color/001000.jpg scene0222_00/depth/001000.png
545
+ scene0697_00/color/000800.jpg scene0697_00/depth/000800.png
546
+ scene0426_02/color/000800.jpg scene0426_02/depth/000800.png
547
+ scene0256_01/color/000600.jpg scene0256_01/depth/000600.png
548
+ scene0606_01/color/000400.jpg scene0606_01/depth/000400.png
549
+ scene0222_01/color/001300.jpg scene0222_01/depth/001300.png
550
+ scene0084_01/color/001000.jpg scene0084_01/depth/001000.png
551
+ scene0685_02/color/002200.jpg scene0685_02/depth/002200.png
552
+ scene0599_02/color/000200.jpg scene0599_02/depth/000200.png
553
+ scene0648_00/color/000800.jpg scene0648_00/depth/000800.png
554
+ scene0030_00/color/001600.jpg scene0030_00/depth/001600.png
555
+ scene0629_02/color/000600.jpg scene0629_02/depth/000600.png
556
+ scene0389_00/color/000200.jpg scene0389_00/depth/000200.png
557
+ scene0423_01/color/000000.jpg scene0423_01/depth/000000.png
558
+ scene0697_00/color/002200.jpg scene0697_00/depth/002200.png
559
+ scene0222_01/color/001400.jpg scene0222_01/depth/001400.png
560
+ scene0231_02/color/002200.jpg scene0231_02/depth/002200.png
561
+ scene0231_01/color/003500.jpg scene0231_01/depth/003500.png
562
+ scene0222_00/color/000900.jpg scene0222_00/depth/000900.png
563
+ scene0629_00/color/001300.jpg scene0629_00/depth/001300.png
564
+ scene0500_00/color/001800.jpg scene0500_00/depth/001800.png
565
+ scene0081_02/color/000700.jpg scene0081_02/depth/000700.png
566
+ scene0458_00/color/000800.jpg scene0458_00/depth/000800.png
567
+ scene0307_01/color/000700.jpg scene0307_01/depth/000700.png
568
+ scene0458_00/color/001000.jpg scene0458_00/depth/001000.png
569
+ scene0423_00/color/000000.jpg scene0423_00/depth/000000.png
570
+ scene0203_00/color/000300.jpg scene0203_00/depth/000300.png
571
+ scene0558_02/color/000100.jpg scene0558_02/depth/000100.png
572
+ scene0086_01/color/000400.jpg scene0086_01/depth/000400.png
573
+ scene0645_01/color/001700.jpg scene0645_01/depth/001700.png
574
+ scene0458_00/color/000300.jpg scene0458_00/depth/000300.png
575
+ scene0378_01/color/001100.jpg scene0378_01/depth/001100.png
576
+ scene0050_00/color/002100.jpg scene0050_00/depth/002100.png
577
+ scene0648_00/color/003000.jpg scene0648_00/depth/003000.png
578
+ scene0550_00/color/002600.jpg scene0550_00/depth/002600.png
579
+ scene0231_00/color/001400.jpg scene0231_00/depth/001400.png
580
+ scene0412_01/color/000600.jpg scene0412_01/depth/000600.png
581
+ scene0700_00/color/003300.jpg scene0700_00/depth/003300.png
582
+ scene0307_00/color/002000.jpg scene0307_00/depth/002000.png
583
+ scene0435_02/color/001300.jpg scene0435_02/depth/001300.png
584
+ scene0550_00/color/003300.jpg scene0550_00/depth/003300.png
585
+ scene0046_01/color/000800.jpg scene0046_01/depth/000800.png
586
+ scene0084_00/color/000900.jpg scene0084_00/depth/000900.png
587
+ scene0575_01/color/000800.jpg scene0575_01/depth/000800.png
588
+ scene0146_02/color/000400.jpg scene0146_02/depth/000400.png
589
+ scene0353_01/color/002100.jpg scene0353_01/depth/002100.png
590
+ scene0648_01/color/000600.jpg scene0648_01/depth/000600.png
591
+ scene0231_00/color/003300.jpg scene0231_00/depth/003300.png
592
+ scene0606_02/color/001700.jpg scene0606_02/depth/001700.png
593
+ scene0231_00/color/001800.jpg scene0231_00/depth/001800.png
594
+ scene0329_01/color/000900.jpg scene0329_01/depth/000900.png
595
+ scene0558_00/color/000300.jpg scene0558_00/depth/000300.png
596
+ scene0704_00/color/002300.jpg scene0704_00/depth/002300.png
597
+ scene0414_00/color/000900.jpg scene0414_00/depth/000900.png
598
+ scene0645_00/color/004500.jpg scene0645_00/depth/004500.png
599
+ scene0700_00/color/004500.jpg scene0700_00/depth/004500.png
600
+ scene0678_02/color/001700.jpg scene0678_02/depth/001700.png
601
+ scene0568_00/color/000100.jpg scene0568_00/depth/000100.png
602
+ scene0458_00/color/001300.jpg scene0458_00/depth/001300.png
603
+ scene0599_02/color/000500.jpg scene0599_02/depth/000500.png
604
+ scene0693_00/color/000200.jpg scene0693_00/depth/000200.png
605
+ scene0207_01/color/000300.jpg scene0207_01/depth/000300.png
606
+ scene0025_00/color/000600.jpg scene0025_00/depth/000600.png
607
+ scene0599_01/color/001100.jpg scene0599_01/depth/001100.png
608
+ scene0670_00/color/001400.jpg scene0670_00/depth/001400.png
609
+ scene0599_00/color/001000.jpg scene0599_00/depth/001000.png
610
+ scene0535_00/color/000400.jpg scene0535_00/depth/000400.png
611
+ scene0696_00/color/000500.jpg scene0696_00/depth/000500.png
612
+ scene0701_01/color/000600.jpg scene0701_01/depth/000600.png
613
+ scene0474_02/color/000300.jpg scene0474_02/depth/000300.png
614
+ scene0665_01/color/000900.jpg scene0665_01/depth/000900.png
615
+ scene0616_00/color/000900.jpg scene0616_00/depth/000900.png
616
+ scene0307_01/color/001900.jpg scene0307_01/depth/001900.png
617
+ scene0648_01/color/002600.jpg scene0648_01/depth/002600.png
618
+ scene0207_01/color/001500.jpg scene0207_01/depth/001500.png
619
+ scene0609_00/color/000100.jpg scene0609_00/depth/000100.png
620
+ scene0131_00/color/000500.jpg scene0131_00/depth/000500.png
621
+ scene0461_00/color/000200.jpg scene0461_00/depth/000200.png
622
+ scene0696_02/color/001500.jpg scene0696_02/depth/001500.png
623
+ scene0406_02/color/000700.jpg scene0406_02/depth/000700.png
624
+ scene0064_00/color/001000.jpg scene0064_00/depth/001000.png
625
+ scene0249_00/color/001500.jpg scene0249_00/depth/001500.png
626
+ scene0496_00/color/000900.jpg scene0496_00/depth/000900.png
627
+ scene0081_01/color/000700.jpg scene0081_01/depth/000700.png
628
+ scene0081_01/color/001100.jpg scene0081_01/depth/001100.png
629
+ scene0671_00/color/000500.jpg scene0671_00/depth/000500.png
630
+ scene0606_02/color/000200.jpg scene0606_02/depth/000200.png
631
+ scene0598_00/color/000800.jpg scene0598_00/depth/000800.png
632
+ scene0697_03/color/002300.jpg scene0697_03/depth/002300.png
633
+ scene0633_00/color/001200.jpg scene0633_00/depth/001200.png
634
+ scene0593_00/color/000700.jpg scene0593_00/depth/000700.png
635
+ scene0653_01/color/001600.jpg scene0653_01/depth/001600.png
636
+ scene0655_00/color/000600.jpg scene0655_00/depth/000600.png
637
+ scene0046_02/color/001600.jpg scene0046_02/depth/001600.png
638
+ scene0608_00/color/001500.jpg scene0608_00/depth/001500.png
639
+ scene0645_01/color/003100.jpg scene0645_01/depth/003100.png
640
+ scene0328_00/color/000800.jpg scene0328_00/depth/000800.png
641
+ scene0606_01/color/000800.jpg scene0606_01/depth/000800.png
642
+ scene0655_01/color/000200.jpg scene0655_01/depth/000200.png
643
+ scene0684_01/color/000400.jpg scene0684_01/depth/000400.png
644
+ scene0329_01/color/000400.jpg scene0329_01/depth/000400.png
645
+ scene0458_00/color/001600.jpg scene0458_00/depth/001600.png
646
+ scene0207_00/color/001100.jpg scene0207_00/depth/001100.png
647
+ scene0552_00/color/000600.jpg scene0552_00/depth/000600.png
648
+ scene0208_00/color/000300.jpg scene0208_00/depth/000300.png
649
+ scene0378_02/color/000600.jpg scene0378_02/depth/000600.png
650
+ scene0704_00/color/002100.jpg scene0704_00/depth/002100.png
651
+ scene0701_02/color/001000.jpg scene0701_02/depth/001000.png
652
+ scene0609_01/color/000200.jpg scene0609_01/depth/000200.png
653
+ scene0095_01/color/000400.jpg scene0095_01/depth/000400.png
654
+ scene0357_01/color/000100.jpg scene0357_01/depth/000100.png
655
+ scene0653_01/color/002400.jpg scene0653_01/depth/002400.png
656
+ scene0462_00/color/000400.jpg scene0462_00/depth/000400.png
657
+ scene0249_00/color/001700.jpg scene0249_00/depth/001700.png
658
+ scene0221_00/color/000200.jpg scene0221_00/depth/000200.png
659
+ scene0500_00/color/000900.jpg scene0500_00/depth/000900.png
660
+ scene0474_03/color/001800.jpg scene0474_03/depth/001800.png
661
+ scene0701_00/color/000400.jpg scene0701_00/depth/000400.png
662
+ scene0222_00/color/004700.jpg scene0222_00/depth/004700.png
663
+ scene0575_02/color/002200.jpg scene0575_02/depth/002200.png
664
+ scene0598_02/color/001500.jpg scene0598_02/depth/001500.png
665
+ scene0222_00/color/003700.jpg scene0222_00/depth/003700.png
666
+ scene0084_01/color/001400.jpg scene0084_01/depth/001400.png
667
+ scene0249_00/color/002000.jpg scene0249_00/depth/002000.png
668
+ scene0697_00/color/000300.jpg scene0697_00/depth/000300.png
669
+ scene0461_00/color/000500.jpg scene0461_00/depth/000500.png
670
+ scene0629_01/color/000100.jpg scene0629_01/depth/000100.png
671
+ scene0609_02/color/000100.jpg scene0609_02/depth/000100.png
672
+ scene0606_00/color/001600.jpg scene0606_00/depth/001600.png
673
+ scene0629_01/color/000600.jpg scene0629_01/depth/000600.png
674
+ scene0697_00/color/000200.jpg scene0697_00/depth/000200.png
675
+ scene0704_00/color/001600.jpg scene0704_00/depth/001600.png
676
+ scene0050_00/color/000400.jpg scene0050_00/depth/000400.png
677
+ scene0435_01/color/000700.jpg scene0435_01/depth/000700.png
678
+ scene0095_00/color/001500.jpg scene0095_00/depth/001500.png
679
+ scene0462_00/color/001100.jpg scene0462_00/depth/001100.png
680
+ scene0696_02/color/000700.jpg scene0696_02/depth/000700.png
681
+ scene0685_02/color/001200.jpg scene0685_02/depth/001200.png
682
+ scene0663_02/color/002600.jpg scene0663_02/depth/002600.png
683
+ scene0430_00/color/001700.jpg scene0430_00/depth/001700.png
684
+ scene0670_00/color/001700.jpg scene0670_00/depth/001700.png
685
+ scene0222_01/color/004000.jpg scene0222_01/depth/004000.png
686
+ scene0606_01/color/002000.jpg scene0606_01/depth/002000.png
687
+ scene0606_00/color/000300.jpg scene0606_00/depth/000300.png
688
+ scene0412_00/color/001300.jpg scene0412_00/depth/001300.png
689
+ scene0621_00/color/001300.jpg scene0621_00/depth/001300.png
690
+ scene0146_00/color/001100.jpg scene0146_00/depth/001100.png
691
+ scene0578_02/color/000900.jpg scene0578_02/depth/000900.png
692
+ scene0629_01/color/002200.jpg scene0629_01/depth/002200.png
693
+ scene0050_02/color/001100.jpg scene0050_02/depth/001100.png
694
+ scene0670_01/color/003200.jpg scene0670_01/depth/003200.png
695
+ scene0583_01/color/000900.jpg scene0583_01/depth/000900.png
696
+ scene0664_01/color/000600.jpg scene0664_01/depth/000600.png
697
+ scene0645_00/color/001300.jpg scene0645_00/depth/001300.png
698
+ scene0678_02/color/000300.jpg scene0678_02/depth/000300.png
699
+ scene0231_02/color/001500.jpg scene0231_02/depth/001500.png
700
+ scene0700_02/color/002100.jpg scene0700_02/depth/002100.png
701
+ scene0353_01/color/000600.jpg scene0353_01/depth/000600.png
702
+ scene0231_00/color/002400.jpg scene0231_00/depth/002400.png
703
+ scene0527_00/color/000100.jpg scene0527_00/depth/000100.png
704
+ scene0500_01/color/001100.jpg scene0500_01/depth/001100.png
705
+ scene0645_01/color/002800.jpg scene0645_01/depth/002800.png
706
+ scene0011_01/color/002500.jpg scene0011_01/depth/002500.png
707
+ scene0278_00/color/000000.jpg scene0278_00/depth/000000.png
708
+ scene0050_02/color/000500.jpg scene0050_02/depth/000500.png
709
+ scene0050_01/color/002000.jpg scene0050_01/depth/002000.png
710
+ scene0663_00/color/002300.jpg scene0663_00/depth/002300.png
711
+ scene0164_00/color/001400.jpg scene0164_00/depth/001400.png
712
+ scene0651_00/color/000400.jpg scene0651_00/depth/000400.png
713
+ scene0378_02/color/001300.jpg scene0378_02/depth/001300.png
714
+ scene0412_00/color/000900.jpg scene0412_00/depth/000900.png
715
+ scene0578_01/color/001200.jpg scene0578_01/depth/001200.png
716
+ scene0316_00/color/000200.jpg scene0316_00/depth/000200.png
717
+ scene0580_01/color/002100.jpg scene0580_01/depth/002100.png
718
+ scene0131_02/color/000300.jpg scene0131_02/depth/000300.png
719
+ scene0144_00/color/000600.jpg scene0144_00/depth/000600.png
720
+ scene0697_02/color/002100.jpg scene0697_02/depth/002100.png
721
+ scene0697_01/color/002300.jpg scene0697_01/depth/002300.png
722
+ scene0025_01/color/001000.jpg scene0025_01/depth/001000.png
723
+ scene0578_01/color/000700.jpg scene0578_01/depth/000700.png
724
+ scene0334_01/color/000500.jpg scene0334_01/depth/000500.png
725
+ scene0670_01/color/000600.jpg scene0670_01/depth/000600.png
726
+ scene0231_02/color/002400.jpg scene0231_02/depth/002400.png
727
+ scene0474_03/color/001900.jpg scene0474_03/depth/001900.png
728
+ scene0621_00/color/002000.jpg scene0621_00/depth/002000.png
729
+ scene0690_01/color/000000.jpg scene0690_01/depth/000000.png
730
+ scene0231_01/color/001600.jpg scene0231_01/depth/001600.png
731
+ scene0086_01/color/000900.jpg scene0086_01/depth/000900.png
732
+ scene0550_00/color/002200.jpg scene0550_00/depth/002200.png
733
+ scene0670_01/color/002700.jpg scene0670_01/depth/002700.png
734
+ scene0328_00/color/000900.jpg scene0328_00/depth/000900.png
735
+ scene0686_00/color/000900.jpg scene0686_00/depth/000900.png
736
+ scene0300_00/color/000500.jpg scene0300_00/depth/000500.png
737
+ scene0015_00/color/001600.jpg scene0015_00/depth/001600.png
738
+ scene0334_01/color/000000.jpg scene0334_01/depth/000000.png
739
+ scene0131_01/color/000300.jpg scene0131_01/depth/000300.png
740
+ scene0474_03/color/002000.jpg scene0474_03/depth/002000.png
741
+ scene0678_02/color/000600.jpg scene0678_02/depth/000600.png
742
+ scene0231_00/color/004000.jpg scene0231_00/depth/004000.png
743
+ scene0050_00/color/000300.jpg scene0050_00/depth/000300.png
744
+ scene0599_01/color/000700.jpg scene0599_01/depth/000700.png
745
+ scene0575_01/color/000900.jpg scene0575_01/depth/000900.png
746
+ scene0329_01/color/000500.jpg scene0329_01/depth/000500.png
747
+ scene0575_00/color/000100.jpg scene0575_00/depth/000100.png
748
+ scene0086_01/color/000500.jpg scene0086_01/depth/000500.png
749
+ scene0575_02/color/001800.jpg scene0575_02/depth/001800.png
750
+ scene0187_00/color/001400.jpg scene0187_00/depth/001400.png
751
+ scene0257_00/color/000300.jpg scene0257_00/depth/000300.png
752
+ scene0653_00/color/000000.jpg scene0653_00/depth/000000.png
753
+ scene0651_01/color/000800.jpg scene0651_01/depth/000800.png
754
+ scene0608_01/color/000300.jpg scene0608_01/depth/000300.png
755
+ scene0050_00/color/001700.jpg scene0050_00/depth/001700.png
756
+ scene0664_01/color/001300.jpg scene0664_01/depth/001300.png
757
+ scene0663_02/color/000200.jpg scene0663_02/depth/000200.png
758
+ scene0568_00/color/000600.jpg scene0568_00/depth/000600.png
759
+ scene0077_01/color/000200.jpg scene0077_01/depth/000200.png
760
+ scene0608_01/color/002600.jpg scene0608_01/depth/002600.png
761
+ scene0338_02/color/000000.jpg scene0338_02/depth/000000.png
762
+ scene0693_02/color/000000.jpg scene0693_02/depth/000000.png
763
+ scene0257_00/color/000400.jpg scene0257_00/depth/000400.png
764
+ scene0011_01/color/000900.jpg scene0011_01/depth/000900.png
765
+ scene0578_01/color/001100.jpg scene0578_01/depth/001100.png
766
+ scene0435_00/color/000900.jpg scene0435_00/depth/000900.png
767
+ scene0086_01/color/001100.jpg scene0086_01/depth/001100.png
768
+ scene0427_00/color/000300.jpg scene0427_00/depth/000300.png
769
+ scene0458_01/color/000200.jpg scene0458_01/depth/000200.png
770
+ scene0663_00/color/002600.jpg scene0663_00/depth/002600.png
771
+ scene0664_02/color/000700.jpg scene0664_02/depth/000700.png
772
+ scene0670_00/color/002900.jpg scene0670_00/depth/002900.png
773
+ scene0196_00/color/000500.jpg scene0196_00/depth/000500.png
774
+ scene0575_01/color/000400.jpg scene0575_01/depth/000400.png
775
+ scene0100_02/color/000100.jpg scene0100_02/depth/000100.png
776
+ scene0606_01/color/001300.jpg scene0606_01/depth/001300.png
777
+ scene0086_01/color/000600.jpg scene0086_01/depth/000600.png
778
+ scene0231_01/color/002700.jpg scene0231_01/depth/002700.png
779
+ scene0697_01/color/002800.jpg scene0697_01/depth/002800.png
780
+ scene0474_03/color/002600.jpg scene0474_03/depth/002600.png
781
+ scene0685_02/color/001900.jpg scene0685_02/depth/001900.png
782
+ scene0435_01/color/001000.jpg scene0435_01/depth/001000.png
783
+ scene0607_00/color/000100.jpg scene0607_00/depth/000100.png
784
+ scene0353_01/color/000500.jpg scene0353_01/depth/000500.png
785
+ scene0207_01/color/000500.jpg scene0207_01/depth/000500.png
786
+ scene0575_02/color/000100.jpg scene0575_02/depth/000100.png
787
+ scene0583_01/color/001500.jpg scene0583_01/depth/001500.png
788
+ scene0187_00/color/001900.jpg scene0187_00/depth/001900.png
789
+ scene0351_01/color/000100.jpg scene0351_01/depth/000100.png
790
+ scene0700_00/color/001000.jpg scene0700_00/depth/001000.png
791
+ scene0629_00/color/002300.jpg scene0629_00/depth/002300.png
792
+ scene0629_02/color/000200.jpg scene0629_02/depth/000200.png
793
+ scene0354_00/color/000200.jpg scene0354_00/depth/000200.png
794
+ scene0575_01/color/001200.jpg scene0575_01/depth/001200.png
795
+ scene0334_01/color/000800.jpg scene0334_01/depth/000800.png
796
+ scene0378_01/color/000300.jpg scene0378_01/depth/000300.png
797
+ scene0356_01/color/000100.jpg scene0356_01/depth/000100.png
798
+ scene0064_00/color/000800.jpg scene0064_00/depth/000800.png
799
+ scene0278_01/color/000400.jpg scene0278_01/depth/000400.png
800
+ scene0678_01/color/001300.jpg scene0678_01/depth/001300.png
Lotus-2/datasets/eval/normal/.gitempty ADDED
File without changes
Lotus-2/eval.py ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ import os
3
+ import torch
4
+ from PIL import Image
5
+ import gradio as gr
6
+ from glob import glob
7
+ from contextlib import nullcontext
8
+ from pipeline import Lotus2Pipeline
9
+ from diffusers import (
10
+ FlowMatchEulerDiscreteScheduler,
11
+ FluxTransformer2DModel,
12
+ )
13
+ from infer import (
14
+ load_lora_and_lcm_weights,
15
+ process_single_image
16
+ )
17
+ from evaluation.evaluation import evaluation_depth, evaluation_normal
18
+
19
+
20
+ pipeline = None
21
+ device = "cuda" if torch.cuda.is_available() else "cpu"
22
+ weight_dtype = torch.bfloat16
23
+ task = os.environ.get("TASK_NAME", "depth") # or normal
24
+
25
+ def load_pipeline():
26
+ global pipeline, device, weight_dtype, task
27
+ noise_scheduler = FlowMatchEulerDiscreteScheduler.from_pretrained(
28
+ 'black-forest-labs/FLUX.1-dev', subfolder="scheduler", num_train_timesteps=10
29
+ )
30
+ transformer = FluxTransformer2DModel.from_pretrained(
31
+ 'black-forest-labs/FLUX.1-dev', subfolder="transformer", revision=None, variant=None
32
+ )
33
+ transformer.requires_grad_(False)
34
+ transformer.to(device=device, dtype=weight_dtype)
35
+ transformer, local_continuity_module = load_lora_and_lcm_weights(transformer, None, None, None, task)
36
+ pipeline = Lotus2Pipeline.from_pretrained(
37
+ 'black-forest-labs/FLUX.1-dev',
38
+ scheduler=noise_scheduler,
39
+ transformer=transformer,
40
+ revision=None,
41
+ variant=None,
42
+ torch_dtype=weight_dtype,
43
+ )
44
+ pipeline.local_continuity_module = local_continuity_module
45
+ pipeline = pipeline.to(device)
46
+ pipeline.set_progress_bar_config(disable=True)
47
+
48
+ def eval():
49
+ global pipeline, device, weight_dtype, task
50
+ base_test_data_dir = os.environ.get("TEST_DATA_DIR", "datasets/eval")
51
+ output_dir = os.environ.get("OUTPUT_DIR", "outputs/eval")
52
+
53
+ def gen_fn(rgb_in):
54
+ if task == "depth":
55
+ rgb_input = rgb_in / 255.0 * 2.0 - 1.0 # [0, 255] -> [-1, 1]
56
+ output_type = "np"
57
+ elif task == "normal":
58
+ rgb_input = rgb_in
59
+ output_type = "pt"
60
+ else:
61
+ raise ValueError(f"Invalid task name: {task}")
62
+
63
+ prediction = pipeline(
64
+ rgb_in=rgb_input,
65
+ prompt='',
66
+ num_inference_steps=10,
67
+ output_type=output_type,
68
+ process_res=None
69
+ ).images[0]
70
+
71
+ if task == "depth":
72
+ output = prediction.mean(axis=-1)
73
+ elif task == "normal":
74
+ output = (prediction * 2.0 - 1.0).unsqueeze(0) # [0,1] -> [-1,1], (1, 3, h, w)
75
+ return output
76
+
77
+ with torch.no_grad():
78
+ if task == 'depth':
79
+ test_data_dir = os.path.join(base_test_data_dir, task)
80
+ test_depth_dataset_configs = {
81
+ "nyuv2": "configs/data_nyu_test.yaml",
82
+ "kitti": "configs/data_kitti_eigen_test.yaml",
83
+ "scannet": "configs/data_scannet_val.yaml",
84
+ "eth3d": "configs/data_eth3d.yaml",
85
+ "diode": "configs/data_diode_all.yaml",
86
+ }
87
+ for dataset_name, config_path in test_depth_dataset_configs.items():
88
+ eval_dir = os.path.join(output_dir, task, dataset_name)
89
+ test_dataset_config = os.path.join(test_data_dir, config_path)
90
+ alignment_type = "least_square_disparity"
91
+ metric_tracker = evaluation_depth(eval_dir, test_dataset_config, test_data_dir, eval_mode="generate_prediction",
92
+ gen_prediction=gen_fn, pipeline=pipeline, alignment=alignment_type, processing_res=None)
93
+ print(dataset_name,',', 'abs_relative_difference: ', metric_tracker.result()['abs_relative_difference'], 'delta1_acc: ', metric_tracker.result()['delta1_acc'])
94
+ elif task == 'normal':
95
+ test_data_dir = os.path.join(base_test_data_dir, task)
96
+ dataset_split_path = "evaluation/dataset_normal"
97
+ eval_datasets = [ ('nyuv2', 'test'), ('scannet', 'test'), ('ibims', 'ibims'), ('sintel', 'sintel'), ('oasis', 'val')]
98
+ eval_dir = os.path.join(output_dir, task)
99
+ evaluation_normal(eval_dir, test_data_dir, dataset_split_path, eval_mode="generate_prediction",
100
+ gen_prediction=gen_fn, pipeline=pipeline, eval_datasets=eval_datasets, processing_res=None)
101
+ else:
102
+ raise ValueError(f"Not support predicting {task} yet. ")
103
+
104
+ print('==> Evaluation is done. \n==> Results saved to:', output_dir)
105
+
106
+
107
+ if __name__ == "__main__":
108
+ load_pipeline()
109
+ eval()
Lotus-2/eval.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ export TASK_NAME="depth" # or normal
2
+ export TEST_DATA_DIR="datasets/eval"
3
+ export OUTPUT_DIR="outputs/eval"
4
+
5
+ python eval.py
Lotus-2/evaluation/dataset_depth/__init__.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Bingxin Ke
2
+ # Last modified: 2024-03-30
3
+
4
+ import os
5
+
6
+ from .base_depth_dataset import BaseDepthDataset, get_pred_name, DatasetMode # noqa: F401
7
+ from .eth3d_dataset import ETH3DDataset
8
+ from .kitti_dataset import KITTIDataset
9
+ from .nyu_dataset import NYUDataset
10
+ from .scannet_dataset import ScanNetDataset
11
+ from .diode_dataset import DIODEDataset
12
+
13
+ dataset_name_class_dict = {
14
+ "nyu_v2": NYUDataset,
15
+ "kitti": KITTIDataset,
16
+ "eth3d": ETH3DDataset,
17
+ "scannet": ScanNetDataset,
18
+ "diode": DIODEDataset,
19
+ }
20
+
21
+
22
+ def get_dataset(
23
+ cfg_data_split, base_data_dir: str, mode: DatasetMode, **kwargs
24
+ ) -> BaseDepthDataset:
25
+ if cfg_data_split.name in dataset_name_class_dict.keys():
26
+ dataset_class = dataset_name_class_dict[cfg_data_split.name]
27
+ dataset = dataset_class(
28
+ mode=mode,
29
+ filename_ls_path=cfg_data_split.filenames,
30
+ dataset_dir=os.path.join(base_data_dir, cfg_data_split.dir),
31
+ **cfg_data_split,
32
+ **kwargs,
33
+ )
34
+ else:
35
+ raise NotImplementedError
36
+
37
+ return dataset
Lotus-2/evaluation/dataset_depth/base_depth_dataset.py ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Bingxin Ke
2
+ # Last modified: 2024-04-15
3
+
4
+ import io
5
+ import os
6
+ import random
7
+ import tarfile
8
+ from enum import Enum
9
+
10
+ import numpy as np
11
+ import torch
12
+ from PIL import Image
13
+ from torch.utils.data import Dataset
14
+ from torchvision.transforms import InterpolationMode, Resize
15
+
16
+
17
+ class DatasetMode(Enum):
18
+ RGB_ONLY = "rgb_only"
19
+ EVAL = "evaluate"
20
+ TRAIN = "train"
21
+
22
+
23
+ def read_image_from_tar(tar_obj, img_rel_path):
24
+ image = tar_obj.extractfile("./" + img_rel_path)
25
+ image = image.read()
26
+ image = Image.open(io.BytesIO(image))
27
+
28
+
29
+ class BaseDepthDataset(Dataset):
30
+ def __init__(
31
+ self,
32
+ mode: DatasetMode,
33
+ filename_ls_path: str,
34
+ dataset_dir: str,
35
+ disp_name: str,
36
+ min_depth,
37
+ max_depth,
38
+ has_filled_depth,
39
+ name_mode,
40
+ depth_transform=None,
41
+ augmentation_args: dict = None,
42
+ resize_to_hw=None,
43
+ move_invalid_to_far_plane: bool = True,
44
+ rgb_transform=lambda x: x / 255.0 * 2 - 1, # [0, 255] -> [-1, 1],
45
+ **kwargs,
46
+ ) -> None:
47
+ super().__init__()
48
+ self.mode = mode
49
+ # dataset info
50
+ self.filename_ls_path = filename_ls_path
51
+ self.dataset_dir = dataset_dir
52
+ self.disp_name = disp_name
53
+ self.has_filled_depth = has_filled_depth
54
+ self.name_mode: DepthFileNameMode = name_mode
55
+ self.min_depth = min_depth
56
+ self.max_depth = max_depth
57
+
58
+ # training arguments
59
+ self.depth_transform = depth_transform
60
+ self.augm_args = augmentation_args
61
+ self.resize_to_hw = resize_to_hw
62
+ self.rgb_transform = rgb_transform
63
+ self.move_invalid_to_far_plane = move_invalid_to_far_plane
64
+
65
+ # Load filenames
66
+ with open(self.filename_ls_path, "r") as f:
67
+ self.filenames = [
68
+ s.split() for s in f.readlines()
69
+ ] # [['rgb.png', 'depth.tif'], [], ...]
70
+
71
+ # Tar dataset
72
+ self.tar_obj = None
73
+ self.is_tar = (
74
+ True
75
+ if os.path.isfile(dataset_dir) and tarfile.is_tarfile(dataset_dir)
76
+ else False
77
+ )
78
+
79
+ def __len__(self):
80
+ return len(self.filenames)
81
+
82
+ def __getitem__(self, index):
83
+ rasters, other = self._get_data_item(index)
84
+ if DatasetMode.TRAIN == self.mode:
85
+ rasters = self._training_preprocess(rasters)
86
+ # merge
87
+ outputs = rasters
88
+ outputs.update(other)
89
+ return outputs
90
+
91
+ def _get_data_item(self, index):
92
+ rgb_rel_path, depth_rel_path, filled_rel_path = self._get_data_path(index=index)
93
+
94
+ rasters = {}
95
+
96
+ # RGB data
97
+ rasters.update(self._load_rgb_data(rgb_rel_path=rgb_rel_path))
98
+
99
+ # Depth data
100
+ if DatasetMode.RGB_ONLY != self.mode:
101
+ # load data
102
+ depth_data = self._load_depth_data(
103
+ depth_rel_path=depth_rel_path, filled_rel_path=filled_rel_path
104
+ )
105
+ rasters.update(depth_data)
106
+ # valid mask
107
+ rasters["valid_mask_raw"] = self._get_valid_mask(
108
+ rasters["depth_raw_linear"]
109
+ ).clone()
110
+ rasters["valid_mask_filled"] = self._get_valid_mask(
111
+ rasters["depth_filled_linear"]
112
+ ).clone()
113
+
114
+ other = {"index": index, "rgb_relative_path": rgb_rel_path}
115
+
116
+ return rasters, other
117
+
118
+ def _load_rgb_data(self, rgb_rel_path):
119
+ # Read RGB data
120
+ rgb = self._read_rgb_file(rgb_rel_path)
121
+
122
+ outputs = {
123
+ "rgb_int": torch.from_numpy(rgb).int(),
124
+ }
125
+ return outputs
126
+
127
+ def _load_depth_data(self, depth_rel_path, filled_rel_path):
128
+ # Read depth data
129
+ outputs = {}
130
+ depth_raw = self._read_depth_file(depth_rel_path).squeeze()
131
+ depth_raw_linear = torch.from_numpy(depth_raw).float().unsqueeze(0) # [1, H, W]
132
+ outputs["depth_raw_linear"] = depth_raw_linear.clone()
133
+
134
+ if self.has_filled_depth:
135
+ depth_filled = self._read_depth_file(filled_rel_path).squeeze()
136
+ depth_filled_linear = torch.from_numpy(depth_filled).float().unsqueeze(0)
137
+ outputs["depth_filled_linear"] = depth_filled_linear
138
+ else:
139
+ outputs["depth_filled_linear"] = depth_raw_linear.clone()
140
+
141
+ return outputs
142
+
143
+ def _get_data_path(self, index):
144
+ filename_line = self.filenames[index]
145
+
146
+ # Get data path
147
+ rgb_rel_path = filename_line[0]
148
+
149
+ depth_rel_path, filled_rel_path = None, None
150
+ if DatasetMode.RGB_ONLY != self.mode:
151
+ depth_rel_path = filename_line[1]
152
+ if self.has_filled_depth:
153
+ filled_rel_path = filename_line[2]
154
+ return rgb_rel_path, depth_rel_path, filled_rel_path
155
+
156
+ def _read_image(self, img_rel_path) -> np.ndarray:
157
+ if self.is_tar:
158
+ if self.tar_obj is None:
159
+ self.tar_obj = tarfile.open(self.dataset_dir)
160
+ image = self.tar_obj.extractfile("./" + img_rel_path)
161
+ image = image.read()
162
+ image = Image.open(io.BytesIO(image)) # [H, W, rgb]
163
+ else:
164
+ img_path = os.path.join(self.dataset_dir, img_rel_path)
165
+ image = Image.open(img_path)
166
+ image = np.asarray(image)
167
+ return image
168
+
169
+ def _read_rgb_file(self, rel_path) -> np.ndarray:
170
+ rgb = self._read_image(rel_path)
171
+ rgb = np.transpose(rgb, (2, 0, 1)).astype(int) # [rgb, H, W]
172
+ return rgb
173
+
174
+ def _read_depth_file(self, rel_path):
175
+ depth_in = self._read_image(rel_path)
176
+ # Replace code below to decode depth according to dataset definition
177
+ depth_decoded = depth_in
178
+
179
+ return depth_decoded
180
+
181
+ def _get_valid_mask(self, depth: torch.Tensor):
182
+ valid_mask = torch.logical_and(
183
+ (depth > self.min_depth), (depth < self.max_depth)
184
+ ).bool()
185
+ return valid_mask
186
+
187
+ def _training_preprocess(self, rasters):
188
+ # Augmentation
189
+ if self.augm_args is not None:
190
+ rasters = self._augment_data(rasters)
191
+
192
+ # Normalization
193
+ rasters["depth_raw_norm"] = self.depth_transform(
194
+ rasters["depth_raw_linear"], rasters["valid_mask_raw"]
195
+ ).clone()
196
+ rasters["depth_filled_norm"] = self.depth_transform(
197
+ rasters["depth_filled_linear"], rasters["valid_mask_filled"]
198
+ ).clone()
199
+
200
+ # Set invalid pixel to far plane
201
+ if self.move_invalid_to_far_plane:
202
+ if self.depth_transform.far_plane_at_max:
203
+ rasters["depth_filled_norm"][~rasters["valid_mask_filled"]] = (
204
+ self.depth_transform.norm_max
205
+ )
206
+ else:
207
+ rasters["depth_filled_norm"][~rasters["valid_mask_filled"]] = (
208
+ self.depth_transform.norm_min
209
+ )
210
+
211
+ # Resize
212
+ if self.resize_to_hw is not None:
213
+ resize_transform = Resize(
214
+ size=self.resize_to_hw, interpolation=InterpolationMode.NEAREST_EXACT
215
+ )
216
+ rasters = {k: resize_transform(v) for k, v in rasters.items()}
217
+
218
+ return rasters
219
+
220
+ def _augment_data(self, rasters_dict):
221
+ # lr flipping
222
+ lr_flip_p = self.augm_args.lr_flip_p
223
+ if random.random() < lr_flip_p:
224
+ rasters_dict = {k: v.flip(-1) for k, v in rasters_dict.items()}
225
+
226
+ return rasters_dict
227
+
228
+ def __del__(self):
229
+ if self.tar_obj is not None:
230
+ self.tar_obj.close()
231
+ self.tar_obj = None
232
+
233
+
234
+ # Prediction file naming modes
235
+ class DepthFileNameMode(Enum):
236
+ id = 1 # id.png
237
+ rgb_id = 2 # rgb_id.png
238
+ i_d_rgb = 3 # i_d_1_rgb.png
239
+ rgb_i_d = 4
240
+
241
+
242
+ def get_pred_name(rgb_basename, name_mode, suffix=".png"):
243
+ if DepthFileNameMode.rgb_id == name_mode:
244
+ pred_basename = "pred_" + rgb_basename.split("_")[1]
245
+ elif DepthFileNameMode.i_d_rgb == name_mode:
246
+ pred_basename = rgb_basename.replace("_rgb.", "_pred.")
247
+ elif DepthFileNameMode.id == name_mode:
248
+ pred_basename = "pred_" + rgb_basename
249
+ elif DepthFileNameMode.rgb_i_d == name_mode:
250
+ pred_basename = "pred_" + "_".join(rgb_basename.split("_")[1:])
251
+ else:
252
+ raise NotImplementedError
253
+ # change suffix
254
+ pred_basename = os.path.splitext(pred_basename)[0] + suffix
255
+
256
+ return pred_basename
Lotus-2/evaluation/dataset_depth/diode_dataset.py ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Bingxin Ke
2
+ # Last modified: 2024-02-26
3
+
4
+ import os
5
+ import tarfile
6
+ from io import BytesIO
7
+
8
+ import numpy as np
9
+ import torch
10
+
11
+ from .base_depth_dataset import BaseDepthDataset, DepthFileNameMode, DatasetMode
12
+
13
+
14
+ class DIODEDataset(BaseDepthDataset):
15
+ def __init__(
16
+ self,
17
+ **kwargs,
18
+ ) -> None:
19
+ super().__init__(
20
+ # DIODE data parameter
21
+ min_depth=0.6,
22
+ max_depth=350,
23
+ has_filled_depth=False,
24
+ name_mode=DepthFileNameMode.id,
25
+ **kwargs,
26
+ )
27
+
28
+ def _read_npy_file(self, rel_path):
29
+ if self.is_tar:
30
+ if self.tar_obj is None:
31
+ self.tar_obj = tarfile.open(self.dataset_dir)
32
+ fileobj = self.tar_obj.extractfile("./" + rel_path)
33
+ npy_path_or_content = BytesIO(fileobj.read())
34
+ else:
35
+ npy_path_or_content = os.path.join(self.dataset_dir, rel_path)
36
+ data = np.load(npy_path_or_content).squeeze()[np.newaxis, :, :]
37
+ return data
38
+
39
+ def _read_depth_file(self, rel_path):
40
+ depth = self._read_npy_file(rel_path)
41
+ return depth
42
+
43
+ def _get_data_path(self, index):
44
+ return self.filenames[index]
45
+
46
+ def _get_data_item(self, index):
47
+ # Special: depth mask is read from data
48
+
49
+ rgb_rel_path, depth_rel_path, mask_rel_path = self._get_data_path(index=index)
50
+
51
+ rasters = {}
52
+
53
+ # RGB data
54
+ rasters.update(self._load_rgb_data(rgb_rel_path=rgb_rel_path))
55
+
56
+ # Depth data
57
+ if DatasetMode.RGB_ONLY != self.mode:
58
+ # load data
59
+ depth_data = self._load_depth_data(
60
+ depth_rel_path=depth_rel_path, filled_rel_path=None
61
+ )
62
+ rasters.update(depth_data)
63
+
64
+ # valid mask
65
+ mask = self._read_npy_file(mask_rel_path).astype(bool)
66
+ mask = torch.from_numpy(mask).bool()
67
+ rasters["valid_mask_raw"] = mask.clone()
68
+ rasters["valid_mask_filled"] = mask.clone()
69
+
70
+ other = {"index": index, "rgb_relative_path": rgb_rel_path}
71
+
72
+ return rasters, other
Lotus-2/evaluation/dataset_depth/eth3d_dataset.py ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Bingxin Ke
2
+ # Last modified: 2024-02-08
3
+
4
+ import torch
5
+ import tarfile
6
+ import os
7
+ import numpy as np
8
+
9
+ from .base_depth_dataset import BaseDepthDataset, DepthFileNameMode
10
+
11
+
12
+ class ETH3DDataset(BaseDepthDataset):
13
+ HEIGHT, WIDTH = 4032, 6048
14
+
15
+ def __init__(
16
+ self,
17
+ **kwargs,
18
+ ) -> None:
19
+ super().__init__(
20
+ # ETH3D data parameter
21
+ min_depth=1e-5,
22
+ max_depth=torch.inf,
23
+ has_filled_depth=False,
24
+ name_mode=DepthFileNameMode.id,
25
+ **kwargs,
26
+ )
27
+
28
+ def _read_depth_file(self, rel_path):
29
+ # Read special binary data: https://www.eth3d.net/documentation#format-of-multi-view-data-image-formats
30
+ if self.is_tar:
31
+ if self.tar_obj is None:
32
+ self.tar_obj = tarfile.open(self.dataset_dir)
33
+ binary_data = self.tar_obj.extractfile("./" + rel_path)
34
+ binary_data = binary_data.read()
35
+
36
+ else:
37
+ depth_path = os.path.join(self.dataset_dir, rel_path)
38
+ with open(depth_path, "rb") as file:
39
+ binary_data = file.read()
40
+ # Convert the binary data to a numpy array of 32-bit floats
41
+ depth_decoded = np.frombuffer(binary_data, dtype=np.float32).copy()
42
+
43
+ depth_decoded[depth_decoded == torch.inf] = 0.0
44
+
45
+ depth_decoded = depth_decoded.reshape((self.HEIGHT, self.WIDTH))
46
+ return depth_decoded
Lotus-2/evaluation/dataset_depth/kitti_dataset.py ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Bingxin Ke
2
+ # Last modified: 2024-02-08
3
+
4
+ import torch
5
+
6
+ from .base_depth_dataset import BaseDepthDataset, DepthFileNameMode
7
+
8
+
9
+ class KITTIDataset(BaseDepthDataset):
10
+ def __init__(
11
+ self,
12
+ kitti_bm_crop, # Crop to KITTI benchmark size
13
+ valid_mask_crop, # Evaluation mask. [None, garg or eigen]
14
+ **kwargs,
15
+ ) -> None:
16
+ super().__init__(
17
+ # KITTI data parameter
18
+ min_depth=1e-5,
19
+ max_depth=80,
20
+ has_filled_depth=False,
21
+ name_mode=DepthFileNameMode.id,
22
+ **kwargs,
23
+ )
24
+ self.kitti_bm_crop = kitti_bm_crop
25
+ self.valid_mask_crop = valid_mask_crop
26
+ assert self.valid_mask_crop in [
27
+ None,
28
+ "garg", # set evaluation mask according to Garg ECCV16
29
+ "eigen", # set evaluation mask according to Eigen NIPS14
30
+ ], f"Unknown crop type: {self.valid_mask_crop}"
31
+
32
+ # Filter out empty depth
33
+ self.filenames = [f for f in self.filenames if "None" != f[1]]
34
+
35
+ def _read_depth_file(self, rel_path):
36
+ depth_in = self._read_image(rel_path)
37
+ # Decode KITTI depth
38
+ depth_decoded = depth_in / 256.0
39
+ return depth_decoded
40
+
41
+ def _load_rgb_data(self, rgb_rel_path):
42
+ rgb_data = super()._load_rgb_data(rgb_rel_path)
43
+ if self.kitti_bm_crop:
44
+ rgb_data = {k: self.kitti_benchmark_crop(v) for k, v in rgb_data.items()}
45
+ return rgb_data
46
+
47
+ def _load_depth_data(self, depth_rel_path, filled_rel_path):
48
+ depth_data = super()._load_depth_data(depth_rel_path, filled_rel_path)
49
+ if self.kitti_bm_crop:
50
+ depth_data = {
51
+ k: self.kitti_benchmark_crop(v) for k, v in depth_data.items()
52
+ }
53
+ return depth_data
54
+
55
+ @staticmethod
56
+ def kitti_benchmark_crop(input_img):
57
+ """
58
+ Crop images to KITTI benchmark size
59
+ Args:
60
+ `input_img` (torch.Tensor): Input image to be cropped.
61
+
62
+ Returns:
63
+ torch.Tensor:Cropped image.
64
+ """
65
+ KB_CROP_HEIGHT = 352
66
+ KB_CROP_WIDTH = 1216
67
+
68
+ height, width = input_img.shape[-2:]
69
+ top_margin = int(height - KB_CROP_HEIGHT)
70
+ left_margin = int((width - KB_CROP_WIDTH) / 2)
71
+ if 2 == len(input_img.shape):
72
+ out = input_img[
73
+ top_margin : top_margin + KB_CROP_HEIGHT,
74
+ left_margin : left_margin + KB_CROP_WIDTH,
75
+ ]
76
+ elif 3 == len(input_img.shape):
77
+ out = input_img[
78
+ :,
79
+ top_margin : top_margin + KB_CROP_HEIGHT,
80
+ left_margin : left_margin + KB_CROP_WIDTH,
81
+ ]
82
+ return out
83
+
84
+ def _get_valid_mask(self, depth: torch.Tensor):
85
+ # reference: https://github.com/cleinc/bts/blob/master/pytorch/bts_eval.py
86
+ valid_mask = super()._get_valid_mask(depth) # [1, H, W]
87
+
88
+ if self.valid_mask_crop is not None:
89
+ eval_mask = torch.zeros_like(valid_mask.squeeze()).bool()
90
+ gt_height, gt_width = eval_mask.shape
91
+
92
+ if "garg" == self.valid_mask_crop:
93
+ eval_mask[
94
+ int(0.40810811 * gt_height) : int(0.99189189 * gt_height),
95
+ int(0.03594771 * gt_width) : int(0.96405229 * gt_width),
96
+ ] = 1
97
+ elif "eigen" == self.valid_mask_crop:
98
+ eval_mask[
99
+ int(0.3324324 * gt_height) : int(0.91351351 * gt_height),
100
+ int(0.0359477 * gt_width) : int(0.96405229 * gt_width),
101
+ ] = 1
102
+
103
+ eval_mask.reshape(valid_mask.shape)
104
+ valid_mask = torch.logical_and(valid_mask, eval_mask)
105
+ return valid_mask
Lotus-2/evaluation/dataset_depth/nyu_dataset.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Bingxin Ke
2
+ # Last modified: 2024-02-08
3
+
4
+
5
+ import torch
6
+
7
+ from .base_depth_dataset import BaseDepthDataset, DepthFileNameMode
8
+
9
+
10
+ class NYUDataset(BaseDepthDataset):
11
+ def __init__(
12
+ self,
13
+ eigen_valid_mask: bool,
14
+ **kwargs,
15
+ ) -> None:
16
+ super().__init__(
17
+ # NYUv2 dataset parameter
18
+ min_depth=1e-3,
19
+ max_depth=10.0,
20
+ has_filled_depth=True,
21
+ name_mode=DepthFileNameMode.rgb_id,
22
+ **kwargs,
23
+ )
24
+
25
+ self.eigen_valid_mask = eigen_valid_mask
26
+
27
+ def _read_depth_file(self, rel_path):
28
+ depth_in = self._read_image(rel_path)
29
+ # Decode NYU depth
30
+ depth_decoded = depth_in / 1000.0
31
+ return depth_decoded
32
+
33
+ def _get_valid_mask(self, depth: torch.Tensor):
34
+ valid_mask = super()._get_valid_mask(depth)
35
+
36
+ # Eigen crop for evaluation
37
+ if self.eigen_valid_mask:
38
+ eval_mask = torch.zeros_like(valid_mask.squeeze()).bool()
39
+ eval_mask[45:471, 41:601] = 1
40
+ eval_mask.reshape(valid_mask.shape)
41
+ valid_mask = torch.logical_and(valid_mask, eval_mask)
42
+
43
+ return valid_mask
Lotus-2/evaluation/dataset_depth/scannet_dataset.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Author: Bingxin Ke
2
+ # Last modified: 2024-02-08
3
+
4
+ from .base_depth_dataset import BaseDepthDataset, DepthFileNameMode
5
+
6
+
7
+ class ScanNetDataset(BaseDepthDataset):
8
+ def __init__(
9
+ self,
10
+ **kwargs,
11
+ ) -> None:
12
+ super().__init__(
13
+ # ScanNet data parameter
14
+ min_depth=1e-3,
15
+ max_depth=10,
16
+ has_filled_depth=False,
17
+ name_mode=DepthFileNameMode.id,
18
+ **kwargs,
19
+ )
20
+
21
+ def _read_depth_file(self, rel_path):
22
+ depth_in = self._read_image(rel_path)
23
+ # Decode ScanNet depth
24
+ depth_decoded = depth_in / 1000.0
25
+ return depth_decoded
Lotus-2/evaluation/dataset_normal/__init__.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ data sample
2
+ """
3
+ class Sample():
4
+ def __init__(self, img=None,
5
+ depth=None, depth_mask=None,
6
+ normal=None, normal_mask=None,
7
+ intrins=None, flipped=False,
8
+ dataset_name='dataset', scene_name='scene', img_name='img',
9
+ info={}):
10
+
11
+ self.img = img # input image
12
+
13
+ self.depth = depth # depth - GT
14
+ self.depth_mask = depth_mask # depth - valid_mask
15
+
16
+ self.normal = normal # surface normals - GT
17
+ self.normal_mask = normal_mask # surface normals - valid_mask
18
+
19
+ self.intrins = intrins # camera intrinsics
20
+ self.flipped = flipped # True when the image is flipped during augmentation
21
+
22
+ self.dataset_name = dataset_name
23
+ self.scene_name = scene_name
24
+ self.img_name = img_name
25
+
26
+ # other info (this is a dict containing any additional information)
27
+ self.info = info
Lotus-2/evaluation/dataset_normal/aug_basic.py ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ basic augmentations
2
+ """
3
+ import random
4
+ import numpy as np
5
+
6
+ import torch
7
+ from torchvision import transforms
8
+ import torch.nn.functional as F
9
+ import torchvision.transforms.functional as TF
10
+
11
+ import logging
12
+ logger = logging.getLogger('root')
13
+
14
+
15
+ def resize(sample, new_H, new_W):
16
+ _, orig_H, orig_W = sample.img.shape
17
+ sample.img = F.interpolate(sample.img.unsqueeze(0), size=(new_H, new_W), mode='bilinear', align_corners=False, antialias=True).squeeze(0)
18
+ if sample.depth is not None:
19
+ sample.depth = F.interpolate(sample.depth.unsqueeze(0), size=(new_H, new_W), mode='nearest').squeeze(0)
20
+ if sample.depth_mask is not None:
21
+ sample.depth_mask = F.interpolate(sample.depth_mask.unsqueeze(0).float(), size=(new_H, new_W), mode='nearest').squeeze(0) > 0.5
22
+ if sample.normal is not None:
23
+ sample.normal = F.interpolate(sample.normal.unsqueeze(0), size=(new_H, new_W), mode='nearest').squeeze(0)
24
+ if sample.normal_mask is not None:
25
+ sample.normal_mask = F.interpolate(sample.normal_mask.unsqueeze(0).float(), size=(new_H, new_W), mode='nearest').squeeze(0) > 0.5
26
+ if sample.intrins is not None:
27
+ # NOTE: top-left is (0,0)
28
+ sample.intrins[0, 0] = sample.intrins[0, 0] * (new_W / orig_W) # fx
29
+ sample.intrins[1, 1] = sample.intrins[1, 1] * (new_H / orig_H) # fy
30
+ sample.intrins[0, 2] = (sample.intrins[0, 2] + 0.5) * (new_W / orig_W) - 0.5 # cx
31
+ sample.intrins[1, 2] = (sample.intrins[1, 2] + 0.5) * (new_H / orig_H) - 0.5 # cy
32
+ return sample
33
+
34
+
35
+ def pad(sample, lrtb):
36
+ l, r, t, b = lrtb
37
+ sample.img = F.pad(sample.img, (l, r, t, b), mode="constant", value=0)
38
+ if sample.depth is not None:
39
+ sample.depth = F.pad(sample.depth, (l, r, t, b), mode="constant", value=0)
40
+ if sample.depth_mask is not None:
41
+ sample.depth_mask = F.pad(sample.depth_mask, (l, r, t, b), mode="constant", value=False)
42
+ if sample.normal is not None:
43
+ sample.normal = F.pad(sample.normal, (l, r, t, b), mode="constant", value=0)
44
+ if sample.normal_mask is not None:
45
+ sample.normal_mask = F.pad(sample.normal_mask, (l, r, t, b), mode="constant", value=False)
46
+ if sample.intrins is not None:
47
+ sample.intrins[0, 2] = sample.intrins[0, 2] + l
48
+ sample.intrins[1, 2] = sample.intrins[1, 2] + t
49
+ return sample
50
+
51
+
52
+ def crop(sample, y, H, x, W):
53
+ sample.img = sample.img[:, y:y+H, x:x+W]
54
+ if sample.depth is not None:
55
+ sample.depth = sample.depth[:, y:y+H, x:x+W]
56
+ if sample.depth_mask is not None:
57
+ sample.depth_mask = sample.depth_mask[:, y:y+H, x:x+W]
58
+ if sample.normal is not None:
59
+ sample.normal = sample.normal[:, y:y+H, x:x+W]
60
+ if sample.normal_mask is not None:
61
+ sample.normal_mask = sample.normal_mask[:, y:y+H, x:x+W]
62
+ if sample.intrins is not None:
63
+ sample.intrins[0, 2] = sample.intrins[0, 2] - x
64
+ sample.intrins[1, 2] = sample.intrins[1, 2] - y
65
+ return sample
66
+
67
+
68
+ class ToTensor():
69
+ """ numpy arrays to torch tensors
70
+ """
71
+ def __call__(self, sample):
72
+ sample.img = torch.from_numpy(sample.img).permute(2, 0, 1) # (3, H, W)
73
+ if sample.depth is not None:
74
+ sample.depth = torch.from_numpy(sample.depth).permute(2, 0, 1) # (1, H, W)
75
+ if sample.depth_mask is not None:
76
+ sample.depth_mask = torch.from_numpy(sample.depth_mask).permute(2, 0, 1) # (1, H, W)
77
+ if sample.normal is not None:
78
+ sample.normal = torch.from_numpy(sample.normal).permute(2, 0, 1) # (3, H, W)
79
+ if sample.normal_mask is not None:
80
+ sample.normal_mask = torch.from_numpy(sample.normal_mask).permute(2, 0, 1) # (1, H, W)
81
+ if sample.intrins is not None:
82
+ sample.intrins = torch.from_numpy(sample.intrins) # (3, 3)
83
+ return sample
84
+
85
+
86
+ class RandomIntrins():
87
+ """ randomize intrinsics
88
+ sample.img is a torch tensor of shape (3, H, W), normalized to [0, 1]
89
+ """
90
+ def __call__(self, sample):
91
+ assert 'crop_H' in sample.info.keys()
92
+ assert 'crop_W' in sample.info.keys()
93
+ crop_H = sample.info['crop_H']
94
+ crop_W = sample.info['crop_W']
95
+
96
+ # height-based resizing
97
+ _, orig_H, orig_W = sample.img.shape
98
+ new_H = random.randrange(min(orig_H, crop_H), max(orig_H, crop_H)+1)
99
+ new_W = round((new_H / orig_H) * orig_W)
100
+ sample = resize(sample, new_H=new_H, new_W=new_W)
101
+
102
+ # pad if necessary
103
+ orig_H, orig_W = sample.img.shape[1], sample.img.shape[2]
104
+ l, r, t, b = 0, 0, 0, 0
105
+ if crop_H > orig_H:
106
+ t = b = crop_H - orig_H
107
+ if crop_W > orig_W:
108
+ l = r = crop_W - orig_W
109
+ sample = pad(sample, (l, r, t, b))
110
+
111
+ # crop
112
+ assert sample.img.shape[1] >= crop_H
113
+ assert sample.img.shape[2] >= crop_W
114
+ x = random.randint(0, sample.img.shape[2] - crop_W)
115
+ y = random.randint(0, sample.img.shape[1] - crop_H)
116
+ sample = crop(sample, y=y, H=crop_H, x=x, W=crop_W)
117
+
118
+ return sample
119
+
120
+
121
+ class Resize():
122
+ """ resize to (H, W)
123
+ sample.img is a torch tensor of shape (3, H, W), normalized to [0, 1]
124
+ """
125
+ def __init__(self, H=480, W=640):
126
+ self.H = H
127
+ self.W = W
128
+
129
+ def __call__(self, sample):
130
+ return resize(sample, new_H=self.H, new_W=self.W)
131
+
132
+
133
+ class RandomCrop():
134
+ """ random crop
135
+ sample.img is a torch tensor of shape (3, H, W), normalized to [0, 1]
136
+ """
137
+ def __init__(self, H=416, W=544):
138
+ self.H = H
139
+ self.W = W
140
+
141
+ def __call__(self, sample):
142
+ assert sample.img.shape[1] >= self.H
143
+ assert sample.img.shape[2] >= self.W
144
+ x = random.randint(0, sample.img.shape[2] - self.W)
145
+ y = random.randint(0, sample.img.shape[1] - self.H)
146
+ return crop(sample, y=y, H=self.H, x=x, W=self.W)
147
+
148
+
149
+ class NyuCrop():
150
+ """ crop image border for NYUv2 images
151
+ W = 43:608 / H = 45:472
152
+ sample.img is a torch tensor of shape (3, H, W), normalized to [0, 1]
153
+ """
154
+ def __call__(self, sample):
155
+ return crop(sample, y=45, H=472-45, x=43, W=608-43)
156
+
157
+
158
+ class HorizontalFlip():
159
+ """ random horizontal flipping
160
+ sample.img is a torch tensor of shape (3, H, W), normalized to [0, 1]
161
+ """
162
+ def __init__(self, p=0.5):
163
+ self.p = p
164
+
165
+ def __call__(self, sample):
166
+ if random.random() < self.p:
167
+ sample.img = TF.hflip(sample.img)
168
+ if sample.depth is not None:
169
+ sample.depth = TF.hflip(sample.depth)
170
+ if sample.depth_mask is not None:
171
+ sample.depth_mask = TF.hflip(sample.depth_mask)
172
+ if sample.normal is not None:
173
+ sample.normal = TF.hflip(sample.normal)
174
+ sample.normal[0, :, :] = -sample.normal[0, :, :]
175
+ if sample.normal_mask is not None:
176
+ sample.normal_mask = TF.hflip(sample.normal_mask)
177
+ if sample.intrins is not None:
178
+ # NOTE: top-left is (0,0)
179
+ _, H, W = sample.img.shape
180
+ sample.intrins[0, 2] = sample.intrins[0, 2] + 0.5 # top-left is (0.5, 0.5)
181
+ sample.intrins[0, 2] = W - sample.intrins[0, 2]
182
+ sample.intrins[0, 2] = sample.intrins[0, 2] - 0.5 # top-left is (0, 0)
183
+ sample.flipped = True
184
+ return sample
185
+
186
+
187
+ class ColorAugmentation():
188
+ """ color augmentation
189
+ sample.img is a torch tensor of shape (3, H, W), normalized to [0, 1]
190
+ """
191
+ def __init__(self, gamma_range=(0.9, 1.1),
192
+ brightness_range=(0.75, 1.25),
193
+ color_range=(0.9, 1.1),
194
+ p=0.5):
195
+ self.gamma_range = gamma_range
196
+ self.brightness_range = brightness_range
197
+ self.color_range = color_range
198
+ self.p = p
199
+
200
+ def __call__(self, sample):
201
+ if random.random() < self.p:
202
+ # gamma augmentation
203
+ gamma = random.uniform(*self.gamma_range)
204
+ sample.img = sample.img ** gamma
205
+
206
+ # brightness augmentation
207
+ brightness = random.uniform(*self.brightness_range)
208
+ sample.img = sample.img * brightness
209
+
210
+ # color augmentation
211
+ colors = np.random.uniform(*self.color_range, size=3).astype(np.float32)
212
+ colors = torch.from_numpy(colors).view(3, 1, 1)
213
+ sample.img = sample.img * colors
214
+
215
+ # clip
216
+ sample.img = torch.clip(sample.img, 0, 1)
217
+
218
+ return sample
219
+
220
+
221
+ class Normalize():
222
+ """ mean & std: for image normalization
223
+ sample.img is a torch tensor of shape (3, H, W), normalized to [0, 1]
224
+ """
225
+ def __init__(self, mean=(0.485, 0.456, 0.406), std=(0.229, 0.224, 0.225)):
226
+ self.normalize = transforms.Normalize(mean=mean, std=std)
227
+
228
+ def __call__(self, sample):
229
+ sample.img = self.normalize(torch.clip(sample.img, min=0.0, max=1.0))
230
+ return sample
231
+
232
+
233
+ class ToDict():
234
+ def __call__(self, sample):
235
+ data_dict = {}
236
+ for k, v in vars(sample).items():
237
+ if v is not None:
238
+ data_dict[k] = v
239
+ return data_dict
Lotus-2/evaluation/dataset_normal/ibims/__init__.py ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ Get samples from iBims-1 (https://paperswithcode.com/dataset/ibims-1)
2
+ NOTE: We computed the GT surface normals by doing discontinuity-aware plane fitting
3
+ """
4
+ import os
5
+ import cv2
6
+ import numpy as np
7
+ os.environ["OPENCV_IO_ENABLE_OPENEXR"]="1"
8
+
9
+ from evaluation.dataset_normal import Sample
10
+
11
+ def get_sample(base_data_dir, sample_path, info):
12
+ # e.g. sample_path = "ibims/corridor_01_img.png"
13
+ scene_name = sample_path.split('/')[0]
14
+ img_name, img_ext = sample_path.split('/')[1].split('_img')
15
+
16
+ dataset_path = os.path.join(base_data_dir, 'dsine_eval', 'ibims')
17
+ img_path = '%s/%s' % (dataset_path, sample_path)
18
+ normal_path = img_path.replace('_img'+img_ext, '_normal.exr')
19
+ intrins_path = img_path.replace('_img'+img_ext, '_intrins.npy')
20
+ assert os.path.exists(img_path)
21
+ assert os.path.exists(normal_path)
22
+ assert os.path.exists(intrins_path)
23
+
24
+ # read image (H, W, 3)
25
+ img = cv2.cvtColor(cv2.imread(img_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
26
+ img = img.astype(np.float32) / 255.0
27
+
28
+ # read normal (H, W, 3)
29
+ normal = cv2.cvtColor(cv2.imread(normal_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
30
+ normal_mask = np.linalg.norm(normal, axis=2, keepdims=True) > 0.5
31
+
32
+ # read intrins (3, 3)
33
+ intrins = np.load(intrins_path)
34
+
35
+ sample = Sample(
36
+ img=img,
37
+ normal=normal,
38
+ normal_mask=normal_mask,
39
+ intrins=intrins,
40
+
41
+ dataset_name='ibims',
42
+ scene_name=scene_name,
43
+ img_name=img_name,
44
+ info=info
45
+ )
46
+
47
+ return sample
Lotus-2/evaluation/dataset_normal/ibims/split/ibims.txt ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ibims/corridor_01_img.png
2
+ ibims/corridor_02_img.png
3
+ ibims/corridor_03_img.png
4
+ ibims/corridor_04_img.png
5
+ ibims/corridor_05_img.png
6
+ ibims/corridor_06_img.png
7
+ ibims/corridor_07_img.png
8
+ ibims/corridor_08_img.png
9
+ ibims/corridor_09_img.png
10
+ ibims/corridor_10_img.png
11
+ ibims/factory_01_img.png
12
+ ibims/factory_02_img.png
13
+ ibims/factory_03_img.png
14
+ ibims/factory_04_img.png
15
+ ibims/factory_05_img.png
16
+ ibims/factory_06_img.png
17
+ ibims/factory_07_img.png
18
+ ibims/factory_08_img.png
19
+ ibims/kitchen_01_img.png
20
+ ibims/kitchen_02_img.png
21
+ ibims/kitchen_03_img.png
22
+ ibims/kitchen_04_img.png
23
+ ibims/kitchen_05_img.png
24
+ ibims/kitchen_06_img.png
25
+ ibims/kitchen_07_img.png
26
+ ibims/kitchen_08_img.png
27
+ ibims/lab_01_img.png
28
+ ibims/lab_02_img.png
29
+ ibims/lab_03_img.png
30
+ ibims/lab_04_img.png
31
+ ibims/lab_05_img.png
32
+ ibims/lab_06_img.png
33
+ ibims/lab_07_img.png
34
+ ibims/lab_08_img.png
35
+ ibims/lab_09_img.png
36
+ ibims/lab_10_img.png
37
+ ibims/lab_11_img.png
38
+ ibims/lectureroom_01_img.png
39
+ ibims/lectureroom_02_img.png
40
+ ibims/lectureroom_03_img.png
41
+ ibims/lectureroom_04_img.png
42
+ ibims/lectureroom_05_img.png
43
+ ibims/lectureroom_06_img.png
44
+ ibims/lectureroom_07_img.png
45
+ ibims/lectureroom_08_img.png
46
+ ibims/lectureroom_09_img.png
47
+ ibims/lectureroom_10_img.png
48
+ ibims/livingroom_01_img.png
49
+ ibims/livingroom_02_img.png
50
+ ibims/livingroom_03_img.png
51
+ ibims/livingroom_04_img.png
52
+ ibims/livingroom_05_img.png
53
+ ibims/livingroom_06_img.png
54
+ ibims/livingroom_07_img.png
55
+ ibims/livingroom_08_img.png
56
+ ibims/livingroom_09_img.png
57
+ ibims/livingroom_10_img.png
58
+ ibims/livingroom_11_img.png
59
+ ibims/livingroom_12_img.png
60
+ ibims/livingroom_13_img.png
61
+ ibims/livingroom_14_img.png
62
+ ibims/livingroom_15_img.png
63
+ ibims/meetingroom_01_img.png
64
+ ibims/meetingroom_02_img.png
65
+ ibims/meetingroom_03_img.png
66
+ ibims/meetingroom_04_img.png
67
+ ibims/meetingroom_05_img.png
68
+ ibims/meetingroom_06_img.png
69
+ ibims/meetingroom_07_img.png
70
+ ibims/meetingroom_08_img.png
71
+ ibims/office_01_img.png
72
+ ibims/office_02_img.png
73
+ ibims/office_03_img.png
74
+ ibims/office_04_img.png
75
+ ibims/office_05_img.png
76
+ ibims/office_06_img.png
77
+ ibims/office_07_img.png
78
+ ibims/office_08_img.png
79
+ ibims/restaurant_01_img.png
80
+ ibims/restaurant_02_img.png
81
+ ibims/restaurant_03_img.png
82
+ ibims/restaurant_04_img.png
83
+ ibims/restaurant_05_img.png
84
+ ibims/restaurant_06_img.png
85
+ ibims/restaurant_07_img.png
86
+ ibims/restaurant_08_img.png
87
+ ibims/restaurant_09_img.png
88
+ ibims/restaurant_10_img.png
89
+ ibims/restaurant_11_img.png
90
+ ibims/restaurant_12_img.png
91
+ ibims/restroom_01_img.png
92
+ ibims/restroom_02_img.png
93
+ ibims/storageroom_01_img.png
94
+ ibims/storageroom_02_img.png
95
+ ibims/storageroom_03_img.png
96
+ ibims/storageroom_04_img.png
97
+ ibims/storageroom_05_img.png
98
+ ibims/storageroom_06_img.png
99
+ ibims/storageroom_07_img.png
100
+ ibims/storageroom_08_img.png
Lotus-2/evaluation/dataset_normal/normal_dataloader.py ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import random
3
+
4
+ import torch
5
+ from torch.utils.data import Dataset
6
+ from torch.utils.data import DataLoader
7
+ from torchvision import transforms
8
+
9
+ from . import aug_basic
10
+
11
+ import logging
12
+ logger = logging.getLogger('root')
13
+
14
+
15
+ def get_transform(dataset_name='hypersim', mode='test'):
16
+ assert mode in ['test']
17
+ logger.info('Defining %s transform for %s dataset' % (mode, dataset_name))
18
+ tf_list = [
19
+ aug_basic.ToTensor(),
20
+ ]
21
+ tf_list += [
22
+ aug_basic.Normalize(mean=[0.5],std=[0.5]),
23
+ aug_basic.ToDict(),
24
+ ]
25
+ logger.info('Defining %s transform for %s dataset ... DONE' % (mode, dataset_name))
26
+ return transforms.Compose(tf_list)
27
+
28
+
29
+ class NormalDataset(Dataset):
30
+ def __init__(self, base_data_dir, dataset_split_path, dataset_name='nyuv2', split='test', mode='test', epoch=0):
31
+ self.split = split
32
+ self.mode = mode
33
+ self.base_data_dir = base_data_dir
34
+ assert mode in ['test']
35
+
36
+ # data split
37
+ split_path = os.path.join(dataset_split_path, dataset_name, 'split', split+'.txt') # dataset_split_path: eval/dataset_normal/
38
+ assert os.path.exists(split_path)
39
+ with open(split_path, 'r') as f:
40
+ self.filenames = [i.strip() for i in f.readlines()]
41
+ self.split_path = split_path
42
+
43
+ # get_sample function
44
+ if dataset_name == 'nyuv2':
45
+ from evaluation.dataset_normal.nyuv2 import get_sample
46
+ elif dataset_name == 'scannet':
47
+ from evaluation.dataset_normal.scannet import get_sample
48
+ elif dataset_name == 'ibims':
49
+ from evaluation.dataset_normal.ibims import get_sample
50
+ elif dataset_name == 'sintel':
51
+ from evaluation.dataset_normal.sintel import get_sample
52
+ elif dataset_name == 'vkitti':
53
+ from evaluation.dataset_normal.vkitti import get_sample
54
+ elif dataset_name == 'oasis':
55
+ from evaluation.dataset_normal.oasis import get_sample
56
+ self.get_sample = get_sample
57
+
58
+ # data preprocessing/augmentation
59
+ self.transform = get_transform(dataset_name=dataset_name, mode=mode)
60
+
61
+ def __len__(self):
62
+ return len(self.filenames)
63
+
64
+ def __getitem__(self, index):
65
+ info = {}
66
+
67
+ sample = self.transform(self.get_sample(
68
+ base_data_dir = self.base_data_dir,
69
+ sample_path=self.filenames[index],
70
+ info=info)
71
+ )
72
+
73
+ return sample
74
+
75
+ class TestLoader(object):
76
+ def __init__(self, base_data_dir, dataset_split_path, dataset_name_test, test_split):
77
+ self.test_samples = NormalDataset(base_data_dir, dataset_split_path, dataset_name=dataset_name_test,
78
+ split=test_split, mode='test', epoch=None)
79
+ self.data = DataLoader(self.test_samples, 1, shuffle=False, num_workers=1, pin_memory=True)
Lotus-2/evaluation/dataset_normal/nyuv2/__init__.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ Get samples from NYUv2 (https://cs.nyu.edu/~fergus/datasets/nyu_depth_v2.html)
2
+ NOTE: GT surface normals are from GeoNet (CVPR 2018) - https://github.com/xjqi/GeoNet
3
+ """
4
+ import os
5
+ import cv2
6
+ import numpy as np
7
+
8
+ from evaluation.dataset_normal import Sample
9
+
10
+
11
+ def get_sample(base_data_dir, sample_path, info):
12
+ # e.g. sample_path = "test/000000_img.png"
13
+ scene_name = sample_path.split('/')[0]
14
+ img_name, img_ext = sample_path.split('/')[1].split('_img')
15
+
16
+ dataset_path = os.path.join(base_data_dir, 'dsine_eval', 'nyuv2')
17
+ img_path = '%s/%s' % (dataset_path, sample_path)
18
+ normal_path = img_path.replace('_img'+img_ext, '_normal.png')
19
+ intrins_path = img_path.replace('_img'+img_ext, '_intrins.npy')
20
+ assert os.path.exists(img_path)
21
+ assert os.path.exists(normal_path)
22
+ assert os.path.exists(intrins_path)
23
+
24
+ # read image (H, W, 3)
25
+ img = cv2.cvtColor(cv2.imread(img_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
26
+ img = img.astype(np.float32) / 255.0
27
+
28
+ # read normal (H, W, 3)
29
+ normal = cv2.cvtColor(cv2.imread(normal_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
30
+ normal_mask = np.sum(normal, axis=2, keepdims=True) > 0
31
+ normal = (normal.astype(np.float32) / 255.0) * 2.0 - 1.0
32
+
33
+ # read intrins (3, 3)
34
+ intrins = np.load(intrins_path)
35
+
36
+ sample = Sample(
37
+ img=img,
38
+ normal=normal,
39
+ normal_mask=normal_mask,
40
+ intrins=intrins,
41
+
42
+ dataset_name='nyuv2',
43
+ scene_name=scene_name,
44
+ img_name=img_name,
45
+ info=info
46
+ )
47
+
48
+ return sample
Lotus-2/evaluation/dataset_normal/nyuv2/split/test.txt ADDED
@@ -0,0 +1,654 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ test/000000_img.png
2
+ test/000001_img.png
3
+ test/000008_img.png
4
+ test/000013_img.png
5
+ test/000014_img.png
6
+ test/000015_img.png
7
+ test/000016_img.png
8
+ test/000017_img.png
9
+ test/000020_img.png
10
+ test/000027_img.png
11
+ test/000028_img.png
12
+ test/000029_img.png
13
+ test/000030_img.png
14
+ test/000031_img.png
15
+ test/000032_img.png
16
+ test/000033_img.png
17
+ test/000034_img.png
18
+ test/000035_img.png
19
+ test/000036_img.png
20
+ test/000037_img.png
21
+ test/000038_img.png
22
+ test/000039_img.png
23
+ test/000040_img.png
24
+ test/000041_img.png
25
+ test/000042_img.png
26
+ test/000045_img.png
27
+ test/000046_img.png
28
+ test/000055_img.png
29
+ test/000056_img.png
30
+ test/000058_img.png
31
+ test/000059_img.png
32
+ test/000060_img.png
33
+ test/000061_img.png
34
+ test/000062_img.png
35
+ test/000075_img.png
36
+ test/000076_img.png
37
+ test/000077_img.png
38
+ test/000078_img.png
39
+ test/000083_img.png
40
+ test/000084_img.png
41
+ test/000085_img.png
42
+ test/000086_img.png
43
+ test/000087_img.png
44
+ test/000088_img.png
45
+ test/000089_img.png
46
+ test/000090_img.png
47
+ test/000116_img.png
48
+ test/000117_img.png
49
+ test/000118_img.png
50
+ test/000124_img.png
51
+ test/000125_img.png
52
+ test/000126_img.png
53
+ test/000127_img.png
54
+ test/000128_img.png
55
+ test/000130_img.png
56
+ test/000131_img.png
57
+ test/000132_img.png
58
+ test/000133_img.png
59
+ test/000136_img.png
60
+ test/000152_img.png
61
+ test/000153_img.png
62
+ test/000154_img.png
63
+ test/000166_img.png
64
+ test/000167_img.png
65
+ test/000168_img.png
66
+ test/000170_img.png
67
+ test/000171_img.png
68
+ test/000172_img.png
69
+ test/000173_img.png
70
+ test/000174_img.png
71
+ test/000175_img.png
72
+ test/000179_img.png
73
+ test/000180_img.png
74
+ test/000181_img.png
75
+ test/000182_img.png
76
+ test/000183_img.png
77
+ test/000184_img.png
78
+ test/000185_img.png
79
+ test/000186_img.png
80
+ test/000187_img.png
81
+ test/000188_img.png
82
+ test/000189_img.png
83
+ test/000190_img.png
84
+ test/000191_img.png
85
+ test/000192_img.png
86
+ test/000193_img.png
87
+ test/000194_img.png
88
+ test/000195_img.png
89
+ test/000196_img.png
90
+ test/000197_img.png
91
+ test/000198_img.png
92
+ test/000199_img.png
93
+ test/000200_img.png
94
+ test/000201_img.png
95
+ test/000206_img.png
96
+ test/000207_img.png
97
+ test/000208_img.png
98
+ test/000209_img.png
99
+ test/000210_img.png
100
+ test/000211_img.png
101
+ test/000219_img.png
102
+ test/000220_img.png
103
+ test/000221_img.png
104
+ test/000249_img.png
105
+ test/000263_img.png
106
+ test/000270_img.png
107
+ test/000271_img.png
108
+ test/000272_img.png
109
+ test/000278_img.png
110
+ test/000279_img.png
111
+ test/000280_img.png
112
+ test/000281_img.png
113
+ test/000282_img.png
114
+ test/000283_img.png
115
+ test/000284_img.png
116
+ test/000295_img.png
117
+ test/000296_img.png
118
+ test/000297_img.png
119
+ test/000298_img.png
120
+ test/000299_img.png
121
+ test/000300_img.png
122
+ test/000301_img.png
123
+ test/000309_img.png
124
+ test/000310_img.png
125
+ test/000311_img.png
126
+ test/000314_img.png
127
+ test/000315_img.png
128
+ test/000316_img.png
129
+ test/000324_img.png
130
+ test/000325_img.png
131
+ test/000326_img.png
132
+ test/000327_img.png
133
+ test/000328_img.png
134
+ test/000329_img.png
135
+ test/000330_img.png
136
+ test/000331_img.png
137
+ test/000332_img.png
138
+ test/000333_img.png
139
+ test/000334_img.png
140
+ test/000350_img.png
141
+ test/000351_img.png
142
+ test/000354_img.png
143
+ test/000355_img.png
144
+ test/000356_img.png
145
+ test/000357_img.png
146
+ test/000358_img.png
147
+ test/000359_img.png
148
+ test/000360_img.png
149
+ test/000361_img.png
150
+ test/000362_img.png
151
+ test/000363_img.png
152
+ test/000383_img.png
153
+ test/000384_img.png
154
+ test/000385_img.png
155
+ test/000386_img.png
156
+ test/000387_img.png
157
+ test/000388_img.png
158
+ test/000389_img.png
159
+ test/000394_img.png
160
+ test/000395_img.png
161
+ test/000396_img.png
162
+ test/000410_img.png
163
+ test/000411_img.png
164
+ test/000412_img.png
165
+ test/000413_img.png
166
+ test/000429_img.png
167
+ test/000430_img.png
168
+ test/000431_img.png
169
+ test/000432_img.png
170
+ test/000433_img.png
171
+ test/000434_img.png
172
+ test/000440_img.png
173
+ test/000441_img.png
174
+ test/000442_img.png
175
+ test/000443_img.png
176
+ test/000444_img.png
177
+ test/000445_img.png
178
+ test/000446_img.png
179
+ test/000447_img.png
180
+ test/000461_img.png
181
+ test/000462_img.png
182
+ test/000463_img.png
183
+ test/000464_img.png
184
+ test/000465_img.png
185
+ test/000468_img.png
186
+ test/000469_img.png
187
+ test/000470_img.png
188
+ test/000471_img.png
189
+ test/000472_img.png
190
+ test/000473_img.png
191
+ test/000474_img.png
192
+ test/000475_img.png
193
+ test/000476_img.png
194
+ test/000507_img.png
195
+ test/000508_img.png
196
+ test/000509_img.png
197
+ test/000510_img.png
198
+ test/000511_img.png
199
+ test/000512_img.png
200
+ test/000514_img.png
201
+ test/000515_img.png
202
+ test/000516_img.png
203
+ test/000517_img.png
204
+ test/000518_img.png
205
+ test/000519_img.png
206
+ test/000520_img.png
207
+ test/000521_img.png
208
+ test/000522_img.png
209
+ test/000523_img.png
210
+ test/000524_img.png
211
+ test/000525_img.png
212
+ test/000530_img.png
213
+ test/000531_img.png
214
+ test/000532_img.png
215
+ test/000536_img.png
216
+ test/000537_img.png
217
+ test/000538_img.png
218
+ test/000548_img.png
219
+ test/000549_img.png
220
+ test/000550_img.png
221
+ test/000554_img.png
222
+ test/000555_img.png
223
+ test/000556_img.png
224
+ test/000557_img.png
225
+ test/000558_img.png
226
+ test/000559_img.png
227
+ test/000560_img.png
228
+ test/000561_img.png
229
+ test/000562_img.png
230
+ test/000563_img.png
231
+ test/000564_img.png
232
+ test/000565_img.png
233
+ test/000566_img.png
234
+ test/000567_img.png
235
+ test/000568_img.png
236
+ test/000569_img.png
237
+ test/000570_img.png
238
+ test/000578_img.png
239
+ test/000579_img.png
240
+ test/000580_img.png
241
+ test/000581_img.png
242
+ test/000582_img.png
243
+ test/000590_img.png
244
+ test/000591_img.png
245
+ test/000592_img.png
246
+ test/000593_img.png
247
+ test/000602_img.png
248
+ test/000603_img.png
249
+ test/000604_img.png
250
+ test/000605_img.png
251
+ test/000606_img.png
252
+ test/000611_img.png
253
+ test/000612_img.png
254
+ test/000616_img.png
255
+ test/000617_img.png
256
+ test/000618_img.png
257
+ test/000619_img.png
258
+ test/000620_img.png
259
+ test/000632_img.png
260
+ test/000633_img.png
261
+ test/000634_img.png
262
+ test/000635_img.png
263
+ test/000636_img.png
264
+ test/000637_img.png
265
+ test/000643_img.png
266
+ test/000644_img.png
267
+ test/000649_img.png
268
+ test/000650_img.png
269
+ test/000655_img.png
270
+ test/000656_img.png
271
+ test/000657_img.png
272
+ test/000662_img.png
273
+ test/000663_img.png
274
+ test/000667_img.png
275
+ test/000668_img.png
276
+ test/000669_img.png
277
+ test/000670_img.png
278
+ test/000671_img.png
279
+ test/000672_img.png
280
+ test/000675_img.png
281
+ test/000676_img.png
282
+ test/000677_img.png
283
+ test/000678_img.png
284
+ test/000679_img.png
285
+ test/000680_img.png
286
+ test/000685_img.png
287
+ test/000686_img.png
288
+ test/000687_img.png
289
+ test/000688_img.png
290
+ test/000689_img.png
291
+ test/000692_img.png
292
+ test/000693_img.png
293
+ test/000696_img.png
294
+ test/000697_img.png
295
+ test/000698_img.png
296
+ test/000705_img.png
297
+ test/000706_img.png
298
+ test/000707_img.png
299
+ test/000708_img.png
300
+ test/000709_img.png
301
+ test/000710_img.png
302
+ test/000711_img.png
303
+ test/000712_img.png
304
+ test/000716_img.png
305
+ test/000717_img.png
306
+ test/000723_img.png
307
+ test/000724_img.png
308
+ test/000725_img.png
309
+ test/000726_img.png
310
+ test/000727_img.png
311
+ test/000730_img.png
312
+ test/000731_img.png
313
+ test/000732_img.png
314
+ test/000733_img.png
315
+ test/000742_img.png
316
+ test/000743_img.png
317
+ test/000758_img.png
318
+ test/000759_img.png
319
+ test/000760_img.png
320
+ test/000761_img.png
321
+ test/000762_img.png
322
+ test/000763_img.png
323
+ test/000764_img.png
324
+ test/000765_img.png
325
+ test/000766_img.png
326
+ test/000767_img.png
327
+ test/000768_img.png
328
+ test/000769_img.png
329
+ test/000770_img.png
330
+ test/000771_img.png
331
+ test/000772_img.png
332
+ test/000773_img.png
333
+ test/000774_img.png
334
+ test/000775_img.png
335
+ test/000776_img.png
336
+ test/000777_img.png
337
+ test/000778_img.png
338
+ test/000779_img.png
339
+ test/000780_img.png
340
+ test/000781_img.png
341
+ test/000782_img.png
342
+ test/000783_img.png
343
+ test/000784_img.png
344
+ test/000785_img.png
345
+ test/000786_img.png
346
+ test/000799_img.png
347
+ test/000800_img.png
348
+ test/000801_img.png
349
+ test/000802_img.png
350
+ test/000803_img.png
351
+ test/000809_img.png
352
+ test/000810_img.png
353
+ test/000811_img.png
354
+ test/000812_img.png
355
+ test/000813_img.png
356
+ test/000820_img.png
357
+ test/000821_img.png
358
+ test/000822_img.png
359
+ test/000832_img.png
360
+ test/000833_img.png
361
+ test/000834_img.png
362
+ test/000835_img.png
363
+ test/000836_img.png
364
+ test/000837_img.png
365
+ test/000838_img.png
366
+ test/000839_img.png
367
+ test/000840_img.png
368
+ test/000841_img.png
369
+ test/000842_img.png
370
+ test/000843_img.png
371
+ test/000844_img.png
372
+ test/000845_img.png
373
+ test/000849_img.png
374
+ test/000850_img.png
375
+ test/000851_img.png
376
+ test/000856_img.png
377
+ test/000857_img.png
378
+ test/000858_img.png
379
+ test/000859_img.png
380
+ test/000860_img.png
381
+ test/000861_img.png
382
+ test/000868_img.png
383
+ test/000869_img.png
384
+ test/000870_img.png
385
+ test/000905_img.png
386
+ test/000906_img.png
387
+ test/000907_img.png
388
+ test/000916_img.png
389
+ test/000917_img.png
390
+ test/000918_img.png
391
+ test/000925_img.png
392
+ test/000926_img.png
393
+ test/000927_img.png
394
+ test/000931_img.png
395
+ test/000932_img.png
396
+ test/000933_img.png
397
+ test/000934_img.png
398
+ test/000944_img.png
399
+ test/000945_img.png
400
+ test/000946_img.png
401
+ test/000958_img.png
402
+ test/000959_img.png
403
+ test/000960_img.png
404
+ test/000961_img.png
405
+ test/000964_img.png
406
+ test/000965_img.png
407
+ test/000966_img.png
408
+ test/000969_img.png
409
+ test/000970_img.png
410
+ test/000971_img.png
411
+ test/000972_img.png
412
+ test/000973_img.png
413
+ test/000974_img.png
414
+ test/000975_img.png
415
+ test/000976_img.png
416
+ test/000990_img.png
417
+ test/000991_img.png
418
+ test/000992_img.png
419
+ test/000993_img.png
420
+ test/000994_img.png
421
+ test/001000_img.png
422
+ test/001001_img.png
423
+ test/001002_img.png
424
+ test/001003_img.png
425
+ test/001009_img.png
426
+ test/001010_img.png
427
+ test/001011_img.png
428
+ test/001020_img.png
429
+ test/001021_img.png
430
+ test/001022_img.png
431
+ test/001031_img.png
432
+ test/001032_img.png
433
+ test/001033_img.png
434
+ test/001037_img.png
435
+ test/001038_img.png
436
+ test/001047_img.png
437
+ test/001048_img.png
438
+ test/001051_img.png
439
+ test/001052_img.png
440
+ test/001056_img.png
441
+ test/001057_img.png
442
+ test/001074_img.png
443
+ test/001075_img.png
444
+ test/001076_img.png
445
+ test/001077_img.png
446
+ test/001078_img.png
447
+ test/001079_img.png
448
+ test/001080_img.png
449
+ test/001081_img.png
450
+ test/001082_img.png
451
+ test/001083_img.png
452
+ test/001087_img.png
453
+ test/001088_img.png
454
+ test/001089_img.png
455
+ test/001090_img.png
456
+ test/001091_img.png
457
+ test/001092_img.png
458
+ test/001093_img.png
459
+ test/001094_img.png
460
+ test/001095_img.png
461
+ test/001097_img.png
462
+ test/001098_img.png
463
+ test/001099_img.png
464
+ test/001100_img.png
465
+ test/001101_img.png
466
+ test/001102_img.png
467
+ test/001103_img.png
468
+ test/001105_img.png
469
+ test/001106_img.png
470
+ test/001107_img.png
471
+ test/001108_img.png
472
+ test/001116_img.png
473
+ test/001117_img.png
474
+ test/001118_img.png
475
+ test/001122_img.png
476
+ test/001123_img.png
477
+ test/001124_img.png
478
+ test/001125_img.png
479
+ test/001126_img.png
480
+ test/001127_img.png
481
+ test/001128_img.png
482
+ test/001129_img.png
483
+ test/001130_img.png
484
+ test/001134_img.png
485
+ test/001135_img.png
486
+ test/001143_img.png
487
+ test/001144_img.png
488
+ test/001145_img.png
489
+ test/001146_img.png
490
+ test/001147_img.png
491
+ test/001148_img.png
492
+ test/001149_img.png
493
+ test/001150_img.png
494
+ test/001151_img.png
495
+ test/001152_img.png
496
+ test/001153_img.png
497
+ test/001154_img.png
498
+ test/001155_img.png
499
+ test/001156_img.png
500
+ test/001157_img.png
501
+ test/001161_img.png
502
+ test/001162_img.png
503
+ test/001163_img.png
504
+ test/001164_img.png
505
+ test/001165_img.png
506
+ test/001166_img.png
507
+ test/001169_img.png
508
+ test/001170_img.png
509
+ test/001173_img.png
510
+ test/001174_img.png
511
+ test/001175_img.png
512
+ test/001178_img.png
513
+ test/001179_img.png
514
+ test/001180_img.png
515
+ test/001181_img.png
516
+ test/001182_img.png
517
+ test/001183_img.png
518
+ test/001191_img.png
519
+ test/001192_img.png
520
+ test/001193_img.png
521
+ test/001194_img.png
522
+ test/001195_img.png
523
+ test/001200_img.png
524
+ test/001201_img.png
525
+ test/001202_img.png
526
+ test/001203_img.png
527
+ test/001204_img.png
528
+ test/001205_img.png
529
+ test/001206_img.png
530
+ test/001207_img.png
531
+ test/001208_img.png
532
+ test/001209_img.png
533
+ test/001210_img.png
534
+ test/001211_img.png
535
+ test/001215_img.png
536
+ test/001216_img.png
537
+ test/001217_img.png
538
+ test/001218_img.png
539
+ test/001219_img.png
540
+ test/001225_img.png
541
+ test/001226_img.png
542
+ test/001227_img.png
543
+ test/001228_img.png
544
+ test/001229_img.png
545
+ test/001232_img.png
546
+ test/001233_img.png
547
+ test/001234_img.png
548
+ test/001246_img.png
549
+ test/001247_img.png
550
+ test/001248_img.png
551
+ test/001249_img.png
552
+ test/001253_img.png
553
+ test/001254_img.png
554
+ test/001255_img.png
555
+ test/001256_img.png
556
+ test/001257_img.png
557
+ test/001258_img.png
558
+ test/001259_img.png
559
+ test/001260_img.png
560
+ test/001261_img.png
561
+ test/001262_img.png
562
+ test/001263_img.png
563
+ test/001264_img.png
564
+ test/001274_img.png
565
+ test/001275_img.png
566
+ test/001276_img.png
567
+ test/001277_img.png
568
+ test/001278_img.png
569
+ test/001279_img.png
570
+ test/001284_img.png
571
+ test/001285_img.png
572
+ test/001286_img.png
573
+ test/001287_img.png
574
+ test/001288_img.png
575
+ test/001289_img.png
576
+ test/001290_img.png
577
+ test/001291_img.png
578
+ test/001292_img.png
579
+ test/001293_img.png
580
+ test/001294_img.png
581
+ test/001296_img.png
582
+ test/001297_img.png
583
+ test/001298_img.png
584
+ test/001301_img.png
585
+ test/001302_img.png
586
+ test/001303_img.png
587
+ test/001304_img.png
588
+ test/001305_img.png
589
+ test/001306_img.png
590
+ test/001307_img.png
591
+ test/001313_img.png
592
+ test/001314_img.png
593
+ test/001328_img.png
594
+ test/001329_img.png
595
+ test/001330_img.png
596
+ test/001331_img.png
597
+ test/001334_img.png
598
+ test/001335_img.png
599
+ test/001336_img.png
600
+ test/001337_img.png
601
+ test/001338_img.png
602
+ test/001339_img.png
603
+ test/001346_img.png
604
+ test/001347_img.png
605
+ test/001348_img.png
606
+ test/001352_img.png
607
+ test/001353_img.png
608
+ test/001354_img.png
609
+ test/001355_img.png
610
+ test/001363_img.png
611
+ test/001364_img.png
612
+ test/001367_img.png
613
+ test/001368_img.png
614
+ test/001383_img.png
615
+ test/001384_img.png
616
+ test/001385_img.png
617
+ test/001386_img.png
618
+ test/001387_img.png
619
+ test/001388_img.png
620
+ test/001389_img.png
621
+ test/001390_img.png
622
+ test/001393_img.png
623
+ test/001394_img.png
624
+ test/001395_img.png
625
+ test/001396_img.png
626
+ test/001397_img.png
627
+ test/001398_img.png
628
+ test/001399_img.png
629
+ test/001400_img.png
630
+ test/001406_img.png
631
+ test/001407_img.png
632
+ test/001408_img.png
633
+ test/001409_img.png
634
+ test/001410_img.png
635
+ test/001411_img.png
636
+ test/001412_img.png
637
+ test/001413_img.png
638
+ test/001420_img.png
639
+ test/001421_img.png
640
+ test/001422_img.png
641
+ test/001423_img.png
642
+ test/001429_img.png
643
+ test/001430_img.png
644
+ test/001431_img.png
645
+ test/001432_img.png
646
+ test/001440_img.png
647
+ test/001441_img.png
648
+ test/001442_img.png
649
+ test/001443_img.png
650
+ test/001444_img.png
651
+ test/001445_img.png
652
+ test/001446_img.png
653
+ test/001447_img.png
654
+ test/001448_img.png
Lotus-2/evaluation/dataset_normal/nyuv2/split/train.txt ADDED
@@ -0,0 +1,795 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ train/000002_img.png
2
+ train/000003_img.png
3
+ train/000004_img.png
4
+ train/000005_img.png
5
+ train/000006_img.png
6
+ train/000007_img.png
7
+ train/000009_img.png
8
+ train/000010_img.png
9
+ train/000011_img.png
10
+ train/000012_img.png
11
+ train/000018_img.png
12
+ train/000019_img.png
13
+ train/000021_img.png
14
+ train/000022_img.png
15
+ train/000023_img.png
16
+ train/000024_img.png
17
+ train/000025_img.png
18
+ train/000026_img.png
19
+ train/000043_img.png
20
+ train/000044_img.png
21
+ train/000047_img.png
22
+ train/000048_img.png
23
+ train/000049_img.png
24
+ train/000050_img.png
25
+ train/000051_img.png
26
+ train/000052_img.png
27
+ train/000053_img.png
28
+ train/000054_img.png
29
+ train/000057_img.png
30
+ train/000063_img.png
31
+ train/000064_img.png
32
+ train/000065_img.png
33
+ train/000066_img.png
34
+ train/000067_img.png
35
+ train/000068_img.png
36
+ train/000069_img.png
37
+ train/000070_img.png
38
+ train/000071_img.png
39
+ train/000072_img.png
40
+ train/000073_img.png
41
+ train/000074_img.png
42
+ train/000079_img.png
43
+ train/000080_img.png
44
+ train/000081_img.png
45
+ train/000082_img.png
46
+ train/000091_img.png
47
+ train/000092_img.png
48
+ train/000093_img.png
49
+ train/000094_img.png
50
+ train/000095_img.png
51
+ train/000096_img.png
52
+ train/000097_img.png
53
+ train/000098_img.png
54
+ train/000099_img.png
55
+ train/000100_img.png
56
+ train/000101_img.png
57
+ train/000102_img.png
58
+ train/000103_img.png
59
+ train/000104_img.png
60
+ train/000105_img.png
61
+ train/000106_img.png
62
+ train/000107_img.png
63
+ train/000108_img.png
64
+ train/000109_img.png
65
+ train/000110_img.png
66
+ train/000111_img.png
67
+ train/000112_img.png
68
+ train/000113_img.png
69
+ train/000114_img.png
70
+ train/000115_img.png
71
+ train/000119_img.png
72
+ train/000120_img.png
73
+ train/000121_img.png
74
+ train/000122_img.png
75
+ train/000123_img.png
76
+ train/000129_img.png
77
+ train/000134_img.png
78
+ train/000135_img.png
79
+ train/000137_img.png
80
+ train/000138_img.png
81
+ train/000139_img.png
82
+ train/000140_img.png
83
+ train/000141_img.png
84
+ train/000142_img.png
85
+ train/000143_img.png
86
+ train/000144_img.png
87
+ train/000145_img.png
88
+ train/000146_img.png
89
+ train/000147_img.png
90
+ train/000148_img.png
91
+ train/000149_img.png
92
+ train/000150_img.png
93
+ train/000151_img.png
94
+ train/000155_img.png
95
+ train/000156_img.png
96
+ train/000157_img.png
97
+ train/000158_img.png
98
+ train/000159_img.png
99
+ train/000160_img.png
100
+ train/000161_img.png
101
+ train/000162_img.png
102
+ train/000163_img.png
103
+ train/000164_img.png
104
+ train/000165_img.png
105
+ train/000169_img.png
106
+ train/000176_img.png
107
+ train/000177_img.png
108
+ train/000178_img.png
109
+ train/000202_img.png
110
+ train/000203_img.png
111
+ train/000204_img.png
112
+ train/000205_img.png
113
+ train/000212_img.png
114
+ train/000213_img.png
115
+ train/000214_img.png
116
+ train/000215_img.png
117
+ train/000216_img.png
118
+ train/000217_img.png
119
+ train/000218_img.png
120
+ train/000222_img.png
121
+ train/000223_img.png
122
+ train/000224_img.png
123
+ train/000225_img.png
124
+ train/000226_img.png
125
+ train/000227_img.png
126
+ train/000228_img.png
127
+ train/000229_img.png
128
+ train/000230_img.png
129
+ train/000231_img.png
130
+ train/000232_img.png
131
+ train/000233_img.png
132
+ train/000234_img.png
133
+ train/000235_img.png
134
+ train/000236_img.png
135
+ train/000237_img.png
136
+ train/000238_img.png
137
+ train/000239_img.png
138
+ train/000240_img.png
139
+ train/000241_img.png
140
+ train/000242_img.png
141
+ train/000243_img.png
142
+ train/000244_img.png
143
+ train/000245_img.png
144
+ train/000246_img.png
145
+ train/000247_img.png
146
+ train/000248_img.png
147
+ train/000250_img.png
148
+ train/000251_img.png
149
+ train/000252_img.png
150
+ train/000253_img.png
151
+ train/000254_img.png
152
+ train/000255_img.png
153
+ train/000256_img.png
154
+ train/000257_img.png
155
+ train/000258_img.png
156
+ train/000259_img.png
157
+ train/000260_img.png
158
+ train/000261_img.png
159
+ train/000262_img.png
160
+ train/000264_img.png
161
+ train/000265_img.png
162
+ train/000266_img.png
163
+ train/000267_img.png
164
+ train/000268_img.png
165
+ train/000269_img.png
166
+ train/000273_img.png
167
+ train/000274_img.png
168
+ train/000275_img.png
169
+ train/000276_img.png
170
+ train/000277_img.png
171
+ train/000285_img.png
172
+ train/000286_img.png
173
+ train/000287_img.png
174
+ train/000288_img.png
175
+ train/000289_img.png
176
+ train/000290_img.png
177
+ train/000291_img.png
178
+ train/000292_img.png
179
+ train/000293_img.png
180
+ train/000294_img.png
181
+ train/000302_img.png
182
+ train/000303_img.png
183
+ train/000304_img.png
184
+ train/000305_img.png
185
+ train/000306_img.png
186
+ train/000307_img.png
187
+ train/000308_img.png
188
+ train/000312_img.png
189
+ train/000313_img.png
190
+ train/000317_img.png
191
+ train/000318_img.png
192
+ train/000319_img.png
193
+ train/000320_img.png
194
+ train/000321_img.png
195
+ train/000322_img.png
196
+ train/000323_img.png
197
+ train/000335_img.png
198
+ train/000336_img.png
199
+ train/000337_img.png
200
+ train/000338_img.png
201
+ train/000339_img.png
202
+ train/000340_img.png
203
+ train/000341_img.png
204
+ train/000342_img.png
205
+ train/000343_img.png
206
+ train/000344_img.png
207
+ train/000345_img.png
208
+ train/000346_img.png
209
+ train/000347_img.png
210
+ train/000348_img.png
211
+ train/000349_img.png
212
+ train/000352_img.png
213
+ train/000353_img.png
214
+ train/000364_img.png
215
+ train/000365_img.png
216
+ train/000366_img.png
217
+ train/000367_img.png
218
+ train/000368_img.png
219
+ train/000369_img.png
220
+ train/000370_img.png
221
+ train/000371_img.png
222
+ train/000372_img.png
223
+ train/000373_img.png
224
+ train/000374_img.png
225
+ train/000375_img.png
226
+ train/000376_img.png
227
+ train/000377_img.png
228
+ train/000378_img.png
229
+ train/000379_img.png
230
+ train/000380_img.png
231
+ train/000381_img.png
232
+ train/000382_img.png
233
+ train/000390_img.png
234
+ train/000391_img.png
235
+ train/000392_img.png
236
+ train/000393_img.png
237
+ train/000397_img.png
238
+ train/000398_img.png
239
+ train/000399_img.png
240
+ train/000400_img.png
241
+ train/000401_img.png
242
+ train/000402_img.png
243
+ train/000403_img.png
244
+ train/000404_img.png
245
+ train/000405_img.png
246
+ train/000406_img.png
247
+ train/000407_img.png
248
+ train/000408_img.png
249
+ train/000409_img.png
250
+ train/000414_img.png
251
+ train/000415_img.png
252
+ train/000416_img.png
253
+ train/000417_img.png
254
+ train/000418_img.png
255
+ train/000419_img.png
256
+ train/000420_img.png
257
+ train/000421_img.png
258
+ train/000422_img.png
259
+ train/000423_img.png
260
+ train/000424_img.png
261
+ train/000425_img.png
262
+ train/000426_img.png
263
+ train/000427_img.png
264
+ train/000428_img.png
265
+ train/000435_img.png
266
+ train/000436_img.png
267
+ train/000437_img.png
268
+ train/000438_img.png
269
+ train/000439_img.png
270
+ train/000448_img.png
271
+ train/000449_img.png
272
+ train/000450_img.png
273
+ train/000451_img.png
274
+ train/000452_img.png
275
+ train/000453_img.png
276
+ train/000454_img.png
277
+ train/000455_img.png
278
+ train/000456_img.png
279
+ train/000457_img.png
280
+ train/000458_img.png
281
+ train/000459_img.png
282
+ train/000460_img.png
283
+ train/000466_img.png
284
+ train/000467_img.png
285
+ train/000477_img.png
286
+ train/000478_img.png
287
+ train/000479_img.png
288
+ train/000480_img.png
289
+ train/000481_img.png
290
+ train/000482_img.png
291
+ train/000483_img.png
292
+ train/000484_img.png
293
+ train/000485_img.png
294
+ train/000486_img.png
295
+ train/000487_img.png
296
+ train/000488_img.png
297
+ train/000489_img.png
298
+ train/000490_img.png
299
+ train/000491_img.png
300
+ train/000492_img.png
301
+ train/000493_img.png
302
+ train/000494_img.png
303
+ train/000495_img.png
304
+ train/000496_img.png
305
+ train/000497_img.png
306
+ train/000498_img.png
307
+ train/000499_img.png
308
+ train/000500_img.png
309
+ train/000501_img.png
310
+ train/000502_img.png
311
+ train/000503_img.png
312
+ train/000504_img.png
313
+ train/000505_img.png
314
+ train/000506_img.png
315
+ train/000513_img.png
316
+ train/000526_img.png
317
+ train/000527_img.png
318
+ train/000528_img.png
319
+ train/000529_img.png
320
+ train/000533_img.png
321
+ train/000534_img.png
322
+ train/000535_img.png
323
+ train/000539_img.png
324
+ train/000540_img.png
325
+ train/000541_img.png
326
+ train/000542_img.png
327
+ train/000543_img.png
328
+ train/000544_img.png
329
+ train/000545_img.png
330
+ train/000546_img.png
331
+ train/000547_img.png
332
+ train/000551_img.png
333
+ train/000552_img.png
334
+ train/000553_img.png
335
+ train/000571_img.png
336
+ train/000572_img.png
337
+ train/000573_img.png
338
+ train/000574_img.png
339
+ train/000575_img.png
340
+ train/000576_img.png
341
+ train/000577_img.png
342
+ train/000583_img.png
343
+ train/000584_img.png
344
+ train/000585_img.png
345
+ train/000586_img.png
346
+ train/000587_img.png
347
+ train/000588_img.png
348
+ train/000589_img.png
349
+ train/000594_img.png
350
+ train/000595_img.png
351
+ train/000596_img.png
352
+ train/000597_img.png
353
+ train/000598_img.png
354
+ train/000599_img.png
355
+ train/000600_img.png
356
+ train/000601_img.png
357
+ train/000607_img.png
358
+ train/000608_img.png
359
+ train/000609_img.png
360
+ train/000610_img.png
361
+ train/000613_img.png
362
+ train/000614_img.png
363
+ train/000615_img.png
364
+ train/000621_img.png
365
+ train/000622_img.png
366
+ train/000623_img.png
367
+ train/000624_img.png
368
+ train/000625_img.png
369
+ train/000626_img.png
370
+ train/000627_img.png
371
+ train/000628_img.png
372
+ train/000629_img.png
373
+ train/000630_img.png
374
+ train/000631_img.png
375
+ train/000638_img.png
376
+ train/000639_img.png
377
+ train/000640_img.png
378
+ train/000641_img.png
379
+ train/000642_img.png
380
+ train/000645_img.png
381
+ train/000646_img.png
382
+ train/000647_img.png
383
+ train/000648_img.png
384
+ train/000651_img.png
385
+ train/000652_img.png
386
+ train/000653_img.png
387
+ train/000654_img.png
388
+ train/000658_img.png
389
+ train/000659_img.png
390
+ train/000660_img.png
391
+ train/000661_img.png
392
+ train/000664_img.png
393
+ train/000665_img.png
394
+ train/000666_img.png
395
+ train/000673_img.png
396
+ train/000674_img.png
397
+ train/000681_img.png
398
+ train/000682_img.png
399
+ train/000683_img.png
400
+ train/000684_img.png
401
+ train/000690_img.png
402
+ train/000691_img.png
403
+ train/000694_img.png
404
+ train/000695_img.png
405
+ train/000699_img.png
406
+ train/000700_img.png
407
+ train/000701_img.png
408
+ train/000702_img.png
409
+ train/000703_img.png
410
+ train/000704_img.png
411
+ train/000713_img.png
412
+ train/000714_img.png
413
+ train/000715_img.png
414
+ train/000718_img.png
415
+ train/000719_img.png
416
+ train/000720_img.png
417
+ train/000721_img.png
418
+ train/000722_img.png
419
+ train/000728_img.png
420
+ train/000729_img.png
421
+ train/000734_img.png
422
+ train/000735_img.png
423
+ train/000736_img.png
424
+ train/000737_img.png
425
+ train/000738_img.png
426
+ train/000739_img.png
427
+ train/000740_img.png
428
+ train/000741_img.png
429
+ train/000744_img.png
430
+ train/000745_img.png
431
+ train/000746_img.png
432
+ train/000747_img.png
433
+ train/000748_img.png
434
+ train/000749_img.png
435
+ train/000750_img.png
436
+ train/000751_img.png
437
+ train/000752_img.png
438
+ train/000753_img.png
439
+ train/000754_img.png
440
+ train/000755_img.png
441
+ train/000756_img.png
442
+ train/000757_img.png
443
+ train/000787_img.png
444
+ train/000788_img.png
445
+ train/000789_img.png
446
+ train/000790_img.png
447
+ train/000791_img.png
448
+ train/000792_img.png
449
+ train/000793_img.png
450
+ train/000794_img.png
451
+ train/000795_img.png
452
+ train/000796_img.png
453
+ train/000797_img.png
454
+ train/000798_img.png
455
+ train/000804_img.png
456
+ train/000805_img.png
457
+ train/000806_img.png
458
+ train/000807_img.png
459
+ train/000808_img.png
460
+ train/000814_img.png
461
+ train/000815_img.png
462
+ train/000816_img.png
463
+ train/000817_img.png
464
+ train/000818_img.png
465
+ train/000819_img.png
466
+ train/000823_img.png
467
+ train/000824_img.png
468
+ train/000825_img.png
469
+ train/000826_img.png
470
+ train/000827_img.png
471
+ train/000828_img.png
472
+ train/000829_img.png
473
+ train/000830_img.png
474
+ train/000831_img.png
475
+ train/000846_img.png
476
+ train/000847_img.png
477
+ train/000848_img.png
478
+ train/000852_img.png
479
+ train/000853_img.png
480
+ train/000854_img.png
481
+ train/000855_img.png
482
+ train/000862_img.png
483
+ train/000863_img.png
484
+ train/000864_img.png
485
+ train/000865_img.png
486
+ train/000866_img.png
487
+ train/000867_img.png
488
+ train/000871_img.png
489
+ train/000872_img.png
490
+ train/000873_img.png
491
+ train/000874_img.png
492
+ train/000875_img.png
493
+ train/000876_img.png
494
+ train/000877_img.png
495
+ train/000878_img.png
496
+ train/000879_img.png
497
+ train/000880_img.png
498
+ train/000881_img.png
499
+ train/000882_img.png
500
+ train/000883_img.png
501
+ train/000884_img.png
502
+ train/000885_img.png
503
+ train/000886_img.png
504
+ train/000887_img.png
505
+ train/000888_img.png
506
+ train/000889_img.png
507
+ train/000890_img.png
508
+ train/000891_img.png
509
+ train/000892_img.png
510
+ train/000893_img.png
511
+ train/000894_img.png
512
+ train/000895_img.png
513
+ train/000896_img.png
514
+ train/000897_img.png
515
+ train/000898_img.png
516
+ train/000899_img.png
517
+ train/000900_img.png
518
+ train/000901_img.png
519
+ train/000902_img.png
520
+ train/000903_img.png
521
+ train/000904_img.png
522
+ train/000908_img.png
523
+ train/000909_img.png
524
+ train/000910_img.png
525
+ train/000911_img.png
526
+ train/000912_img.png
527
+ train/000913_img.png
528
+ train/000914_img.png
529
+ train/000915_img.png
530
+ train/000919_img.png
531
+ train/000920_img.png
532
+ train/000921_img.png
533
+ train/000922_img.png
534
+ train/000923_img.png
535
+ train/000924_img.png
536
+ train/000928_img.png
537
+ train/000929_img.png
538
+ train/000930_img.png
539
+ train/000935_img.png
540
+ train/000936_img.png
541
+ train/000937_img.png
542
+ train/000938_img.png
543
+ train/000939_img.png
544
+ train/000940_img.png
545
+ train/000941_img.png
546
+ train/000942_img.png
547
+ train/000943_img.png
548
+ train/000947_img.png
549
+ train/000948_img.png
550
+ train/000949_img.png
551
+ train/000950_img.png
552
+ train/000951_img.png
553
+ train/000952_img.png
554
+ train/000953_img.png
555
+ train/000954_img.png
556
+ train/000955_img.png
557
+ train/000956_img.png
558
+ train/000957_img.png
559
+ train/000962_img.png
560
+ train/000963_img.png
561
+ train/000967_img.png
562
+ train/000968_img.png
563
+ train/000977_img.png
564
+ train/000978_img.png
565
+ train/000979_img.png
566
+ train/000980_img.png
567
+ train/000981_img.png
568
+ train/000982_img.png
569
+ train/000983_img.png
570
+ train/000984_img.png
571
+ train/000985_img.png
572
+ train/000986_img.png
573
+ train/000987_img.png
574
+ train/000988_img.png
575
+ train/000989_img.png
576
+ train/000995_img.png
577
+ train/000996_img.png
578
+ train/000997_img.png
579
+ train/000998_img.png
580
+ train/000999_img.png
581
+ train/001004_img.png
582
+ train/001005_img.png
583
+ train/001006_img.png
584
+ train/001007_img.png
585
+ train/001008_img.png
586
+ train/001012_img.png
587
+ train/001013_img.png
588
+ train/001014_img.png
589
+ train/001015_img.png
590
+ train/001016_img.png
591
+ train/001017_img.png
592
+ train/001018_img.png
593
+ train/001019_img.png
594
+ train/001023_img.png
595
+ train/001024_img.png
596
+ train/001025_img.png
597
+ train/001026_img.png
598
+ train/001027_img.png
599
+ train/001028_img.png
600
+ train/001029_img.png
601
+ train/001030_img.png
602
+ train/001034_img.png
603
+ train/001035_img.png
604
+ train/001036_img.png
605
+ train/001039_img.png
606
+ train/001040_img.png
607
+ train/001041_img.png
608
+ train/001042_img.png
609
+ train/001043_img.png
610
+ train/001044_img.png
611
+ train/001045_img.png
612
+ train/001046_img.png
613
+ train/001049_img.png
614
+ train/001050_img.png
615
+ train/001053_img.png
616
+ train/001054_img.png
617
+ train/001055_img.png
618
+ train/001058_img.png
619
+ train/001059_img.png
620
+ train/001060_img.png
621
+ train/001061_img.png
622
+ train/001062_img.png
623
+ train/001063_img.png
624
+ train/001064_img.png
625
+ train/001065_img.png
626
+ train/001066_img.png
627
+ train/001067_img.png
628
+ train/001068_img.png
629
+ train/001069_img.png
630
+ train/001070_img.png
631
+ train/001071_img.png
632
+ train/001072_img.png
633
+ train/001073_img.png
634
+ train/001084_img.png
635
+ train/001085_img.png
636
+ train/001086_img.png
637
+ train/001096_img.png
638
+ train/001104_img.png
639
+ train/001109_img.png
640
+ train/001110_img.png
641
+ train/001111_img.png
642
+ train/001112_img.png
643
+ train/001113_img.png
644
+ train/001114_img.png
645
+ train/001115_img.png
646
+ train/001119_img.png
647
+ train/001120_img.png
648
+ train/001121_img.png
649
+ train/001131_img.png
650
+ train/001132_img.png
651
+ train/001133_img.png
652
+ train/001136_img.png
653
+ train/001137_img.png
654
+ train/001138_img.png
655
+ train/001139_img.png
656
+ train/001140_img.png
657
+ train/001141_img.png
658
+ train/001142_img.png
659
+ train/001158_img.png
660
+ train/001159_img.png
661
+ train/001160_img.png
662
+ train/001167_img.png
663
+ train/001168_img.png
664
+ train/001171_img.png
665
+ train/001172_img.png
666
+ train/001176_img.png
667
+ train/001177_img.png
668
+ train/001184_img.png
669
+ train/001185_img.png
670
+ train/001186_img.png
671
+ train/001187_img.png
672
+ train/001188_img.png
673
+ train/001189_img.png
674
+ train/001190_img.png
675
+ train/001196_img.png
676
+ train/001197_img.png
677
+ train/001198_img.png
678
+ train/001199_img.png
679
+ train/001212_img.png
680
+ train/001213_img.png
681
+ train/001214_img.png
682
+ train/001220_img.png
683
+ train/001221_img.png
684
+ train/001222_img.png
685
+ train/001223_img.png
686
+ train/001224_img.png
687
+ train/001230_img.png
688
+ train/001231_img.png
689
+ train/001235_img.png
690
+ train/001236_img.png
691
+ train/001237_img.png
692
+ train/001238_img.png
693
+ train/001239_img.png
694
+ train/001240_img.png
695
+ train/001241_img.png
696
+ train/001242_img.png
697
+ train/001243_img.png
698
+ train/001244_img.png
699
+ train/001245_img.png
700
+ train/001250_img.png
701
+ train/001251_img.png
702
+ train/001252_img.png
703
+ train/001265_img.png
704
+ train/001266_img.png
705
+ train/001267_img.png
706
+ train/001268_img.png
707
+ train/001269_img.png
708
+ train/001270_img.png
709
+ train/001271_img.png
710
+ train/001272_img.png
711
+ train/001273_img.png
712
+ train/001280_img.png
713
+ train/001281_img.png
714
+ train/001282_img.png
715
+ train/001283_img.png
716
+ train/001295_img.png
717
+ train/001299_img.png
718
+ train/001300_img.png
719
+ train/001308_img.png
720
+ train/001309_img.png
721
+ train/001310_img.png
722
+ train/001311_img.png
723
+ train/001312_img.png
724
+ train/001315_img.png
725
+ train/001316_img.png
726
+ train/001317_img.png
727
+ train/001318_img.png
728
+ train/001319_img.png
729
+ train/001320_img.png
730
+ train/001321_img.png
731
+ train/001322_img.png
732
+ train/001323_img.png
733
+ train/001324_img.png
734
+ train/001325_img.png
735
+ train/001326_img.png
736
+ train/001327_img.png
737
+ train/001332_img.png
738
+ train/001333_img.png
739
+ train/001340_img.png
740
+ train/001341_img.png
741
+ train/001342_img.png
742
+ train/001343_img.png
743
+ train/001344_img.png
744
+ train/001345_img.png
745
+ train/001349_img.png
746
+ train/001350_img.png
747
+ train/001351_img.png
748
+ train/001356_img.png
749
+ train/001357_img.png
750
+ train/001358_img.png
751
+ train/001359_img.png
752
+ train/001360_img.png
753
+ train/001361_img.png
754
+ train/001362_img.png
755
+ train/001365_img.png
756
+ train/001366_img.png
757
+ train/001369_img.png
758
+ train/001370_img.png
759
+ train/001371_img.png
760
+ train/001372_img.png
761
+ train/001373_img.png
762
+ train/001374_img.png
763
+ train/001375_img.png
764
+ train/001376_img.png
765
+ train/001377_img.png
766
+ train/001378_img.png
767
+ train/001379_img.png
768
+ train/001380_img.png
769
+ train/001381_img.png
770
+ train/001382_img.png
771
+ train/001391_img.png
772
+ train/001392_img.png
773
+ train/001401_img.png
774
+ train/001402_img.png
775
+ train/001403_img.png
776
+ train/001404_img.png
777
+ train/001405_img.png
778
+ train/001414_img.png
779
+ train/001415_img.png
780
+ train/001416_img.png
781
+ train/001417_img.png
782
+ train/001418_img.png
783
+ train/001419_img.png
784
+ train/001424_img.png
785
+ train/001425_img.png
786
+ train/001426_img.png
787
+ train/001427_img.png
788
+ train/001428_img.png
789
+ train/001433_img.png
790
+ train/001434_img.png
791
+ train/001435_img.png
792
+ train/001436_img.png
793
+ train/001437_img.png
794
+ train/001438_img.png
795
+ train/001439_img.png
Lotus-2/evaluation/dataset_normal/oasis/__init__.py ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ Get samples from OASIS validation set (https://pvl.cs.princeton.edu/OASIS/)
2
+ """
3
+ import os
4
+ import cv2
5
+ import numpy as np
6
+ import pickle
7
+
8
+ from evaluation.dataset_normal import Sample
9
+
10
+
11
+ def read_normal(path, h, w):
12
+ normal_dict = pickle.load(open(path, 'rb'))
13
+
14
+ mask = np.zeros((h,w))
15
+ normal = np.zeros((h,w,3))
16
+
17
+ # Stuff ROI normal into bounding box
18
+ min_y = normal_dict['min_y']
19
+ max_y = normal_dict['max_y']
20
+ min_x = normal_dict['min_x']
21
+ max_x = normal_dict['max_x']
22
+ roi_normal = normal_dict['normal']
23
+
24
+ # to LUB
25
+ normal[min_y:max_y+1, min_x:max_x+1, :] = roi_normal
26
+ normal = normal.astype(np.float32)
27
+ normal[:,:,0] *= -1
28
+ normal[:,:,1] *= -1
29
+
30
+ # Make mask
31
+ roi_mask = np.logical_or(np.logical_or(roi_normal[:,:,0] != 0, roi_normal[:,:,1] != 0), roi_normal[:,:,2] != 0).astype(np.float32)
32
+ mask[min_y:max_y+1, min_x:max_x+1] = roi_mask
33
+ mask = mask[:, :, None]
34
+ mask = mask > 0.5
35
+
36
+ return normal, mask
37
+
38
+
39
+ def get_sample(base_data_dir, sample_path, info):
40
+ # e.g. sample_path = "val/100277_DT_img.png"
41
+ scene_name = sample_path.split('/')[0]
42
+ img_name, img_ext = sample_path.split('/')[-1].split('_img')
43
+
44
+ dataset_path = os.path.join(base_data_dir, 'dsine_eval', 'oasis')
45
+ img_path = '%s/%s' % (dataset_path, sample_path)
46
+ normal_path = img_path.replace('_img'+img_ext, '_normal.pkl')
47
+ intrins_path = img_path.replace('_img'+img_ext, '_intrins.npy')
48
+ assert os.path.exists(img_path)
49
+ assert os.path.exists(normal_path)
50
+ assert os.path.exists(intrins_path)
51
+
52
+ # read image (H, W, 3)
53
+ img = cv2.cvtColor(cv2.imread(img_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
54
+ img = img.astype(np.float32) / 255.0
55
+
56
+ # read normal (H, W, 3)
57
+ h = img.shape[0]
58
+ w = img.shape[1]
59
+ normal, normal_mask = read_normal(normal_path, h, w)
60
+
61
+ # read intrins (3, 3)
62
+ intrins = np.load(intrins_path)
63
+
64
+ sample = Sample(
65
+ img=img,
66
+ normal=normal,
67
+ normal_mask=normal_mask,
68
+ intrins=intrins,
69
+
70
+ dataset_name='oasis',
71
+ scene_name=scene_name,
72
+ img_name=img_name,
73
+ info=info
74
+ )
75
+
76
+ return sample
Lotus-2/evaluation/dataset_normal/oasis/split/val.txt ADDED
The diff for this file is too large to render. See raw diff
 
Lotus-2/evaluation/dataset_normal/scannet/__init__.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ Get samples from ScanNet (https://github.com/ScanNet/ScanNet)
2
+ NOTE: GT surface normals and data split are from FrameNet (ICCV 2019) - https://github.com/hjwdzh/FrameNet
3
+ """
4
+ import os
5
+ import cv2
6
+ import numpy as np
7
+
8
+ from evaluation.dataset_normal import Sample
9
+
10
+
11
+ def get_sample(base_data_dir, sample_path, info):
12
+ # e.g. sample_path = "scene0532_00/000000_img.png"
13
+ scene_name = sample_path.split('/')[0]
14
+ img_name, img_ext = sample_path.split('/')[1].split('_img')
15
+
16
+ dataset_path = os.path.join(base_data_dir, 'dsine_eval', 'scannet')
17
+ img_path = '%s/%s' % (dataset_path, sample_path)
18
+ normal_path = img_path.replace('_img'+img_ext, '_normal.png')
19
+ intrins_path = img_path.replace('_img'+img_ext, '_intrins.npy')
20
+ assert os.path.exists(img_path)
21
+ assert os.path.exists(normal_path)
22
+ assert os.path.exists(intrins_path)
23
+
24
+ # read image (H, W, 3)
25
+ img = cv2.cvtColor(cv2.imread(img_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
26
+ img = img.astype(np.float32) / 255.0
27
+
28
+ # read normal (H, W, 3)
29
+ normal = cv2.cvtColor(cv2.imread(normal_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
30
+ normal_mask = np.sum(normal, axis=2, keepdims=True) > 0
31
+ normal = (normal.astype(np.float32) / 255.0) * 2.0 - 1.0
32
+
33
+ # read intrins (3, 3)
34
+ intrins = np.load(intrins_path)
35
+
36
+ sample = Sample(
37
+ img=img,
38
+ normal=normal,
39
+ normal_mask=normal_mask,
40
+ intrins=intrins,
41
+
42
+ dataset_name='scannet',
43
+ scene_name=scene_name,
44
+ img_name=img_name,
45
+ info=info
46
+ )
47
+
48
+ return sample
Lotus-2/evaluation/dataset_normal/sintel/__init__.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ Get samples from Sintel (http://sintel.is.tue.mpg.de/)
2
+ NOTE: We computed the GT surface normals by doing discontinuity-aware plane fitting
3
+ """
4
+ import os
5
+ import cv2
6
+ import numpy as np
7
+ os.environ["OPENCV_IO_ENABLE_OPENEXR"]="1"
8
+
9
+ from evaluation.dataset_normal import Sample
10
+
11
+
12
+
13
+ def get_sample(base_data_dir, sample_path, info):
14
+ # e.g. sample_path = "alley_1/frame_0001_img.png"
15
+ scene_name = sample_path.split('/')[0]
16
+ img_name, img_ext = sample_path.split('/')[1].split('_img')
17
+
18
+ dataset_path = os.path.join(base_data_dir, 'dsine_eval', 'sintel')
19
+ img_path = '%s/%s' % (dataset_path, sample_path)
20
+ normal_path = img_path.replace('_img'+img_ext, '_normal.exr')
21
+ intrins_path = img_path.replace('_img'+img_ext, '_intrins.npy')
22
+ assert os.path.exists(img_path)
23
+ assert os.path.exists(normal_path)
24
+ assert os.path.exists(intrins_path)
25
+
26
+ # read image (H, W, 3)
27
+ img = cv2.cvtColor(cv2.imread(img_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
28
+ img = img.astype(np.float32) / 255.0
29
+
30
+ # read normal (H, W, 3)
31
+ normal = cv2.cvtColor(cv2.imread(normal_path, cv2.IMREAD_UNCHANGED), cv2.COLOR_BGR2RGB)
32
+ normal_mask = np.linalg.norm(normal, axis=2, keepdims=True) > 0.5
33
+
34
+ # read intrins (3, 3)
35
+ intrins = np.load(intrins_path)
36
+
37
+ sample = Sample(
38
+ img=img,
39
+ normal=normal,
40
+ normal_mask=normal_mask,
41
+ intrins=intrins,
42
+
43
+ dataset_name='sintel',
44
+ scene_name=scene_name,
45
+ img_name=img_name,
46
+ info=info
47
+ )
48
+
49
+ return sample