Spaces:
Runtime error
Runtime error
ascarlettvfx
commited on
Commit
•
660acc7
1
Parent(s):
8c20b30
Upload 99 files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +1 -0
- Marigold-main/.github/workflows/pr_ruff.yml +32 -0
- Marigold-main/.gitignore +22 -0
- Marigold-main/CONTRIBUTING.md +15 -0
- Marigold-main/LICENSE.txt +177 -0
- Marigold-main/README.md +296 -0
- Marigold-main/config/dataset/data_diode_all.yaml +4 -0
- Marigold-main/config/dataset/data_eth3d.yaml +4 -0
- Marigold-main/config/dataset/data_hypersim_train.yaml +4 -0
- Marigold-main/config/dataset/data_hypersim_val.yaml +4 -0
- Marigold-main/config/dataset/data_kitti_eigen_test.yaml +6 -0
- Marigold-main/config/dataset/data_kitti_val.yaml +6 -0
- Marigold-main/config/dataset/data_nyu_test.yaml +5 -0
- Marigold-main/config/dataset/data_nyu_train.yaml +5 -0
- Marigold-main/config/dataset/data_scannet_val.yaml +4 -0
- Marigold-main/config/dataset/data_vkitti_train.yaml +6 -0
- Marigold-main/config/dataset/data_vkitti_val.yaml +6 -0
- Marigold-main/config/dataset/dataset_train.yaml +18 -0
- Marigold-main/config/dataset/dataset_val.yaml +45 -0
- Marigold-main/config/dataset/dataset_vis.yaml +9 -0
- Marigold-main/config/logging.yaml +5 -0
- Marigold-main/config/model_sdv2.yaml +4 -0
- Marigold-main/config/train_debug.yaml +12 -0
- Marigold-main/config/train_marigold.yaml +94 -0
- Marigold-main/config/wandb.yaml +3 -0
- Marigold-main/data_split/diode/diode_val_all_filename_list.txt +0 -0
- Marigold-main/data_split/diode/diode_val_indoor_filename_list.txt +325 -0
- Marigold-main/data_split/diode/diode_val_outdoor_filename_list.txt +446 -0
- Marigold-main/data_split/eth3d/eth3d_filename_list.txt +454 -0
- Marigold-main/data_split/hypersim/filename_list_test_filtered.txt +0 -0
- Marigold-main/data_split/hypersim/filename_list_train_filtered.txt +0 -0
- Marigold-main/data_split/hypersim/filename_list_val_filtered.txt +0 -0
- Marigold-main/data_split/hypersim/filename_list_val_filtered_small_80.txt +80 -0
- Marigold-main/data_split/hypersim/selected_vis_sample.txt +3 -0
- Marigold-main/data_split/kitti/eigen_test_files_with_gt.txt +0 -0
- Marigold-main/data_split/kitti/eigen_val_from_train_800.txt +0 -0
- Marigold-main/data_split/kitti/eigen_val_from_train_sub_100.txt +100 -0
- Marigold-main/data_split/nyu/labeled/filename_list_test.txt +654 -0
- Marigold-main/data_split/nyu/labeled/filename_list_train.txt +795 -0
- Marigold-main/data_split/nyu/labeled/filename_list_train_small_100.txt +100 -0
- Marigold-main/data_split/scannet/scannet_val_sampled_list_800_1.txt +800 -0
- Marigold-main/data_split/vkitti/vkitti_train.txt +0 -0
- Marigold-main/data_split/vkitti/vkitti_val.txt +0 -0
- Marigold-main/doc/badges/badge-colab.svg +33 -0
- Marigold-main/doc/badges/badge-docker.svg +29 -0
- Marigold-main/doc/badges/badge-website.svg +129 -0
- Marigold-main/doc/teaser_collage_transparant.png +3 -0
- Marigold-main/environment.yaml +16 -0
- Marigold-main/eval.py +248 -0
- Marigold-main/infer.py +258 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
Marigold-main/doc/teaser_collage_transparant.png filter=lfs diff=lfs merge=lfs -text
|
Marigold-main/.github/workflows/pr_ruff.yml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Run code quality check with Ruff
|
2 |
+
|
3 |
+
run-name: Checking code quality.
|
4 |
+
on:
|
5 |
+
pull_request:
|
6 |
+
branches:
|
7 |
+
- main
|
8 |
+
push:
|
9 |
+
branches:
|
10 |
+
- main
|
11 |
+
|
12 |
+
concurrency:
|
13 |
+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
14 |
+
cancel-in-progress: true
|
15 |
+
|
16 |
+
jobs:
|
17 |
+
check_code_quality:
|
18 |
+
runs-on: ubuntu-latest
|
19 |
+
steps:
|
20 |
+
- uses: actions/checkout@v3
|
21 |
+
- name: Set up Python
|
22 |
+
uses: actions/setup-python@v4
|
23 |
+
with:
|
24 |
+
python-version: "3.10"
|
25 |
+
- name: Install dependencies
|
26 |
+
run: |
|
27 |
+
python -m pip install --upgrade pip
|
28 |
+
pip install ruff==0.3.7
|
29 |
+
- name: Check quality
|
30 |
+
run: |
|
31 |
+
ruff check .
|
32 |
+
ruff format . --check
|
Marigold-main/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
# ignore these folders
|
3 |
+
/checkpoint
|
4 |
+
/data
|
5 |
+
/input
|
6 |
+
/output
|
7 |
+
/temp
|
8 |
+
/wandb
|
9 |
+
/venv
|
10 |
+
/cache
|
11 |
+
|
12 |
+
**/.ipynb_checkpoints/
|
13 |
+
.vscode/
|
14 |
+
.idea
|
15 |
+
|
16 |
+
# ignore these types
|
17 |
+
*.pyc
|
18 |
+
*.out
|
19 |
+
*.log
|
20 |
+
*.mexa64
|
21 |
+
*.pdf
|
22 |
+
*.tar
|
Marigold-main/CONTRIBUTING.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Contributing instructions
|
2 |
+
|
3 |
+
We appreciate your interest in contributing. Please follow these guidelines:
|
4 |
+
|
5 |
+
1. **Discuss Changes:** Start a GitHub issue to talk about your proposed change before proceeding.
|
6 |
+
|
7 |
+
2. **Pull Requests:** Avoid unsolicited PRs. Discussion helps align with project goals.
|
8 |
+
|
9 |
+
3. **License Agreement:** By submitting a PR, you accept our LICENSE terms.
|
10 |
+
|
11 |
+
4. **Legal Compatibility:** Ensure your change complies with our project's objectives and licensing.
|
12 |
+
|
13 |
+
5. **Attribution:** Credit third-party code in your PR if used.
|
14 |
+
|
15 |
+
Please, feel free to reach out for questions or assistance. Your contributions are valued, and we're excited to work together to enhance this project!
|
Marigold-main/LICENSE.txt
ADDED
@@ -0,0 +1,177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
Apache License
|
3 |
+
Version 2.0, January 2004
|
4 |
+
http://www.apache.org/licenses/
|
5 |
+
|
6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7 |
+
|
8 |
+
1. Definitions.
|
9 |
+
|
10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
12 |
+
|
13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14 |
+
the copyright owner that is granting the License.
|
15 |
+
|
16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
17 |
+
other entities that control, are controlled by, or are under common
|
18 |
+
control with that entity. For the purposes of this definition,
|
19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
20 |
+
direction or management of such entity, whether by contract or
|
21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23 |
+
|
24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25 |
+
exercising permissions granted by this License.
|
26 |
+
|
27 |
+
"Source" form shall mean the preferred form for making modifications,
|
28 |
+
including but not limited to software source code, documentation
|
29 |
+
source, and configuration files.
|
30 |
+
|
31 |
+
"Object" form shall mean any form resulting from mechanical
|
32 |
+
transformation or translation of a Source form, including but
|
33 |
+
not limited to compiled object code, generated documentation,
|
34 |
+
and conversions to other media types.
|
35 |
+
|
36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
37 |
+
Object form, made available under the License, as indicated by a
|
38 |
+
copyright notice that is included in or attached to the work
|
39 |
+
(an example is provided in the Appendix below).
|
40 |
+
|
41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42 |
+
form, that is based on (or derived from) the Work and for which the
|
43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
45 |
+
of this License, Derivative Works shall not include works that remain
|
46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47 |
+
the Work and Derivative Works thereof.
|
48 |
+
|
49 |
+
"Contribution" shall mean any work of authorship, including
|
50 |
+
the original version of the Work and any modifications or additions
|
51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
55 |
+
means any form of electronic, verbal, or written communication sent
|
56 |
+
to the Licensor or its representatives, including but not limited to
|
57 |
+
communication on electronic mailing lists, source code control systems,
|
58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
60 |
+
excluding communication that is conspicuously marked or otherwise
|
61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
62 |
+
|
63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
65 |
+
subsequently incorporated within the Work.
|
66 |
+
|
67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
72 |
+
Work and such Derivative Works in Source or Object form.
|
73 |
+
|
74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77 |
+
(except as stated in this section) patent license to make, have made,
|
78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79 |
+
where such license applies only to those patent claims licensable
|
80 |
+
by such Contributor that are necessarily infringed by their
|
81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
83 |
+
institute patent litigation against any entity (including a
|
84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85 |
+
or a Contribution incorporated within the Work constitutes direct
|
86 |
+
or contributory patent infringement, then any patent licenses
|
87 |
+
granted to You under this License for that Work shall terminate
|
88 |
+
as of the date such litigation is filed.
|
89 |
+
|
90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
91 |
+
Work or Derivative Works thereof in any medium, with or without
|
92 |
+
modifications, and in Source or Object form, provided that You
|
93 |
+
meet the following conditions:
|
94 |
+
|
95 |
+
(a) You must give any other recipients of the Work or
|
96 |
+
Derivative Works a copy of this License; and
|
97 |
+
|
98 |
+
(b) You must cause any modified files to carry prominent notices
|
99 |
+
stating that You changed the files; and
|
100 |
+
|
101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
102 |
+
that You distribute, all copyright, patent, trademark, and
|
103 |
+
attribution notices from the Source form of the Work,
|
104 |
+
excluding those notices that do not pertain to any part of
|
105 |
+
the Derivative Works; and
|
106 |
+
|
107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108 |
+
distribution, then any Derivative Works that You distribute must
|
109 |
+
include a readable copy of the attribution notices contained
|
110 |
+
within such NOTICE file, excluding those notices that do not
|
111 |
+
pertain to any part of the Derivative Works, in at least one
|
112 |
+
of the following places: within a NOTICE text file distributed
|
113 |
+
as part of the Derivative Works; within the Source form or
|
114 |
+
documentation, if provided along with the Derivative Works; or,
|
115 |
+
within a display generated by the Derivative Works, if and
|
116 |
+
wherever such third-party notices normally appear. The contents
|
117 |
+
of the NOTICE file are for informational purposes only and
|
118 |
+
do not modify the License. You may add Your own attribution
|
119 |
+
notices within Derivative Works that You distribute, alongside
|
120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
121 |
+
that such additional attribution notices cannot be construed
|
122 |
+
as modifying the License.
|
123 |
+
|
124 |
+
You may add Your own copyright statement to Your modifications and
|
125 |
+
may provide additional or different license terms and conditions
|
126 |
+
for use, reproduction, or distribution of Your modifications, or
|
127 |
+
for any such Derivative Works as a whole, provided Your use,
|
128 |
+
reproduction, and distribution of the Work otherwise complies with
|
129 |
+
the conditions stated in this License.
|
130 |
+
|
131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
133 |
+
by You to the Licensor shall be under the terms and conditions of
|
134 |
+
this License, without any additional terms or conditions.
|
135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136 |
+
the terms of any separate license agreement you may have executed
|
137 |
+
with Licensor regarding such Contributions.
|
138 |
+
|
139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
141 |
+
except as required for reasonable and customary use in describing the
|
142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
143 |
+
|
144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145 |
+
agreed to in writing, Licensor provides the Work (and each
|
146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148 |
+
implied, including, without limitation, any warranties or conditions
|
149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151 |
+
appropriateness of using or redistributing the Work and assume any
|
152 |
+
risks associated with Your exercise of permissions under this License.
|
153 |
+
|
154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
155 |
+
whether in tort (including negligence), contract, or otherwise,
|
156 |
+
unless required by applicable law (such as deliberate and grossly
|
157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158 |
+
liable to You for damages, including any direct, indirect, special,
|
159 |
+
incidental, or consequential damages of any character arising as a
|
160 |
+
result of this License or out of the use or inability to use the
|
161 |
+
Work (including but not limited to damages for loss of goodwill,
|
162 |
+
work stoppage, computer failure or malfunction, or any and all
|
163 |
+
other commercial damages or losses), even if such Contributor
|
164 |
+
has been advised of the possibility of such damages.
|
165 |
+
|
166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169 |
+
or other liability obligations and/or rights consistent with this
|
170 |
+
License. However, in accepting such obligations, You may act only
|
171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172 |
+
of any other Contributor, and only if You agree to indemnify,
|
173 |
+
defend, and hold each Contributor harmless for any liability
|
174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
175 |
+
of your accepting any such warranty or additional liability.
|
176 |
+
|
177 |
+
END OF TERMS AND CONDITIONS
|
Marigold-main/README.md
ADDED
@@ -0,0 +1,296 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Marigold: Repurposing Diffusion-Based Image Generators for Monocular Depth Estimation
|
2 |
+
|
3 |
+
**CVPR 2024 (Oral, Best Paper Award Candidate)**
|
4 |
+
|
5 |
+
This repository represents the official implementation of the paper titled "Repurposing Diffusion-Based Image Generators for Monocular Depth Estimation".
|
6 |
+
|
7 |
+
[![Website](doc/badges/badge-website.svg)](https://marigoldmonodepth.github.io)
|
8 |
+
[![Paper](https://img.shields.io/badge/arXiv-PDF-b31b1b)](https://arxiv.org/abs/2312.02145)
|
9 |
+
[![Hugging Face (LCM) Space](https://img.shields.io/badge/🤗%20Hugging%20Face%20(LCM)-Space-yellow)](https://huggingface.co/spaces/prs-eth/marigold-lcm)
|
10 |
+
[![Hugging Face (LCM) Model](https://img.shields.io/badge/🤗%20Hugging%20Face%20(LCM)-Model-green)](https://huggingface.co/prs-eth/marigold-lcm-v1-0)
|
11 |
+
[![Open In Colab](doc/badges/badge-colab.svg)](https://colab.research.google.com/drive/12G8reD13DdpMie5ZQlaFNo2WCGeNUH-u?usp=sharing)
|
12 |
+
[![License](https://img.shields.io/badge/License-Apache--2.0-929292)](https://www.apache.org/licenses/LICENSE-2.0)
|
13 |
+
<!-- [![Hugging Face Model](https://img.shields.io/badge/🤗%20Hugging%20Face-Model-green)](https://huggingface.co/prs-eth/marigold-v1-0) -->
|
14 |
+
<!-- [![Website](https://img.shields.io/badge/Project-Website-1081c2)](https://arxiv.org/abs/2312.02145) -->
|
15 |
+
<!-- [![GitHub](https://img.shields.io/github/stars/prs-eth/Marigold?style=default&label=GitHub%20★&logo=github)](https://github.com/prs-eth/Marigold) -->
|
16 |
+
<!-- [![HF Space](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Space-blue)]() -->
|
17 |
+
<!-- [![Docker](doc/badges/badge-docker.svg)]() -->
|
18 |
+
|
19 |
+
[Bingxin Ke](http://www.kebingxin.com/),
|
20 |
+
[Anton Obukhov](https://www.obukhov.ai/),
|
21 |
+
[Shengyu Huang](https://shengyuh.github.io/),
|
22 |
+
[Nando Metzger](https://nandometzger.github.io/),
|
23 |
+
[Rodrigo Caye Daudt](https://rcdaudt.github.io/),
|
24 |
+
[Konrad Schindler](https://scholar.google.com/citations?user=FZuNgqIAAAAJ&hl=en )
|
25 |
+
|
26 |
+
We present Marigold, a diffusion model, and associated fine-tuning protocol for monocular depth estimation. Its core principle is to leverage the rich visual knowledge stored in modern generative image models. Our model, derived from Stable Diffusion and fine-tuned with synthetic data, can zero-shot transfer to unseen data, offering state-of-the-art monocular depth estimation results.
|
27 |
+
|
28 |
+
![teaser](doc/teaser_collage_transparant.png)
|
29 |
+
|
30 |
+
## 📢 News
|
31 |
+
2024-05-28: Training code is released.<br>
|
32 |
+
2024-03-23: Added [LCM v1.0](https://huggingface.co/prs-eth/marigold-lcm-v1-0) for faster inference - try it out at <a href="https://huggingface.co/spaces/prs-eth/marigold-lcm"><img src="https://img.shields.io/badge/🤗%20Hugging%20Face%20(LCM)-Space-yellow" height="16"></a><br>
|
33 |
+
2024-03-04: Accepted to CVPR 2024. <br>
|
34 |
+
2023-12-22: Contributed to Diffusers [community pipeline](https://github.com/huggingface/diffusers/tree/main/examples/community#marigold-depth-estimation). <br>
|
35 |
+
2023-12-19: Updated [license](LICENSE.txt) to Apache License, Version 2.0.<br>
|
36 |
+
2023-12-08: Added
|
37 |
+
<a href="https://huggingface.co/spaces/toshas/marigold"><img src="https://img.shields.io/badge/🤗%20Hugging%20Face-Space-yellow" height="16"></a> - try it out with your images for free!<br>
|
38 |
+
2023-12-05: Added <a href="https://colab.research.google.com/drive/12G8reD13DdpMie5ZQlaFNo2WCGeNUH-u?usp=sharing"><img src="doc/badges/badge-colab.svg" height="16"></a> - dive deeper into our inference pipeline!<br>
|
39 |
+
2023-12-04: Added <a href="https://arxiv.org/abs/2312.02145"><img src="https://img.shields.io/badge/arXiv-PDF-b31b1b" height="16"></a>
|
40 |
+
paper and inference code (this repository).
|
41 |
+
|
42 |
+
## 🚀 Usage
|
43 |
+
|
44 |
+
**We offer several ways to interact with Marigold**:
|
45 |
+
|
46 |
+
1. We integrated [Marigold Pipelines into diffusers 🧨](https://huggingface.co/docs/diffusers/api/pipelines/marigold). Check out many exciting usage scenarios in [this diffusers tutorial](https://huggingface.co/docs/diffusers/using-diffusers/marigold_usage).
|
47 |
+
|
48 |
+
1. A free online interactive demo is available here: <a href="https://huggingface.co/spaces/prs-eth/marigold-lcm"><img src="https://img.shields.io/badge/🤗%20Hugging%20Face%20(LCM)-Space-yellow" height="16"></a> (kudos to the HF team for the GPU grant)
|
49 |
+
|
50 |
+
1. Run the demo locally (requires a GPU and an `nvidia-docker2`, see [Installation Guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html)):
|
51 |
+
1. Paper version: `docker run -it -p 7860:7860 --platform=linux/amd64 --gpus all registry.hf.space/toshas-marigold:latest python app.py`
|
52 |
+
1. LCM version: `docker run -it -p 7860:7860 --platform=linux/amd64 --gpus all registry.hf.space/prs-eth-marigold-lcm:latest python app.py`
|
53 |
+
|
54 |
+
1. Extended demo on a Google Colab: <a href="https://colab.research.google.com/drive/12G8reD13DdpMie5ZQlaFNo2WCGeNUH-u?usp=sharing"><img src="doc/badges/badge-colab.svg" height="16"></a>
|
55 |
+
|
56 |
+
1. If you just want to see the examples, visit our gallery: <a href="https://marigoldmonodepth.github.io"><img src="doc/badges/badge-website.svg" height="16"></a>
|
57 |
+
|
58 |
+
1. Finally, local development instructions with this codebase are given below.
|
59 |
+
|
60 |
+
## 🛠️ Setup
|
61 |
+
|
62 |
+
The inference code was tested on:
|
63 |
+
|
64 |
+
- Ubuntu 22.04 LTS, Python 3.10.12, CUDA 11.7, GeForce RTX 3090 (pip, Mamba)
|
65 |
+
- CentOS Linux 7, Python 3.10.4, CUDA 11.7, GeForce RTX 4090 (pip)
|
66 |
+
- Windows 11 22H2, Python 3.10.12, CUDA 12.3, GeForce RTX 3080 (Mamba)
|
67 |
+
- MacOS 14.2, Python 3.10.12, M1 16G (pip)
|
68 |
+
|
69 |
+
### 🪧 A Note for Windows users
|
70 |
+
|
71 |
+
We recommend running the code in WSL2:
|
72 |
+
|
73 |
+
1. Install WSL following [installation guide](https://learn.microsoft.com/en-us/windows/wsl/install#install-wsl-command).
|
74 |
+
1. Install CUDA support for WSL following [installation guide](https://docs.nvidia.com/cuda/wsl-user-guide/index.html#cuda-support-for-wsl-2).
|
75 |
+
1. Find your drives in `/mnt/<drive letter>/`; check [WSL FAQ](https://learn.microsoft.com/en-us/windows/wsl/faq#how-do-i-access-my-c--drive-) for more details. Navigate to the working directory of choice.
|
76 |
+
|
77 |
+
### 📦 Repository
|
78 |
+
|
79 |
+
Clone the repository (requires git):
|
80 |
+
|
81 |
+
```bash
|
82 |
+
git clone https://github.com/prs-eth/Marigold.git
|
83 |
+
cd Marigold
|
84 |
+
```
|
85 |
+
|
86 |
+
### 💻 Dependencies
|
87 |
+
|
88 |
+
We provide several ways to install the dependencies.
|
89 |
+
|
90 |
+
1. **Using [Mamba](https://github.com/mamba-org/mamba)**, which can installed together with [Miniforge3](https://github.com/conda-forge/miniforge?tab=readme-ov-file#miniforge3).
|
91 |
+
|
92 |
+
Windows users: Install the Linux version into the WSL.
|
93 |
+
|
94 |
+
After the installation, Miniforge needs to be activated first: `source /home/$USER/miniforge3/bin/activate`.
|
95 |
+
|
96 |
+
Create the environment and install dependencies into it:
|
97 |
+
|
98 |
+
```bash
|
99 |
+
mamba env create -n marigold --file environment.yaml
|
100 |
+
conda activate marigold
|
101 |
+
```
|
102 |
+
|
103 |
+
2. **Using pip:**
|
104 |
+
Alternatively, create a Python native virtual environment and install dependencies into it:
|
105 |
+
|
106 |
+
```bash
|
107 |
+
python -m venv venv/marigold
|
108 |
+
source venv/marigold/bin/activate
|
109 |
+
pip install -r requirements.txt
|
110 |
+
```
|
111 |
+
|
112 |
+
Keep the environment activated before running the inference script.
|
113 |
+
Activate the environment again after restarting the terminal session.
|
114 |
+
|
115 |
+
## 🏃 Testing on your images
|
116 |
+
|
117 |
+
### 📷 Prepare images
|
118 |
+
|
119 |
+
1. Use selected images from our paper:
|
120 |
+
|
121 |
+
```bash
|
122 |
+
bash script/download_sample_data.sh
|
123 |
+
```
|
124 |
+
|
125 |
+
1. Or place your images in a directory, for example, under `input/in-the-wild_example`, and run the following inference command.
|
126 |
+
|
127 |
+
### 🚀 Run inference with LCM (faster)
|
128 |
+
|
129 |
+
The [LCM checkpoint](https://huggingface.co/prs-eth/marigold-lcm-v1-0) is distilled from our original checkpoint towards faster inference speed (by reducing inference steps). The inference steps can be as few as 1 (default) to 4. Run with default LCM setting:
|
130 |
+
|
131 |
+
```bash
|
132 |
+
python run.py \
|
133 |
+
--input_rgb_dir input/in-the-wild_example \
|
134 |
+
--output_dir output/in-the-wild_example_lcm
|
135 |
+
```
|
136 |
+
|
137 |
+
### 🎮 Run inference with DDIM (paper setting)
|
138 |
+
|
139 |
+
This setting corresponds to our paper. For academic comparison, please run with this setting.
|
140 |
+
|
141 |
+
```bash
|
142 |
+
python run.py \
|
143 |
+
--checkpoint prs-eth/marigold-v1-0 \
|
144 |
+
--denoise_steps 50 \
|
145 |
+
--ensemble_size 10 \
|
146 |
+
--input_rgb_dir input/in-the-wild_example \
|
147 |
+
--output_dir output/in-the-wild_example
|
148 |
+
```
|
149 |
+
|
150 |
+
You can find all results in `output/in-the-wild_example`. Enjoy!
|
151 |
+
|
152 |
+
### ⚙️ Inference settings
|
153 |
+
|
154 |
+
The default settings are optimized for the best result. However, the behavior of the code can be customized:
|
155 |
+
|
156 |
+
- Trade-offs between the **accuracy** and **speed** (for both options, larger values result in better accuracy at the cost of slower inference.)
|
157 |
+
- `--ensemble_size`: Number of inference passes in the ensemble. For LCM `ensemble_size` is more important than `denoise_steps`. Default: ~~10~~ 5 (for LCM).
|
158 |
+
- `--denoise_steps`: Number of denoising steps of each inference pass. For the original (DDIM) version, it's recommended to use 10-50 steps, while for LCM 1-4 steps. When unassigned (`None`), will read default setting from model config. Default: ~~10 4 (for LCM)~~ `None`.
|
159 |
+
|
160 |
+
- By default, the inference script resizes input images to the *processing resolution*, and then resizes the prediction back to the original resolution. This gives the best quality, as Stable Diffusion, from which Marigold is derived, performs best at 768x768 resolution.
|
161 |
+
|
162 |
+
- `--processing_res`: the processing resolution; set as 0 to process the input resolution directly. When unassigned (`None`), will read default setting from model config. Default: ~~768~~ `None`.
|
163 |
+
- `--output_processing_res`: produce output at the processing resolution instead of upsampling it to the input resolution. Default: False.
|
164 |
+
- `--resample_method`: the resampling method used to resize images and depth predictions. This can be one of `bilinear`, `bicubic`, or `nearest`. Default: `bilinear`.
|
165 |
+
|
166 |
+
- `--half_precision` or `--fp16`: Run with half-precision (16-bit float) to have faster speed and reduced VRAM usage, but might lead to suboptimal results.
|
167 |
+
- `--seed`: Random seed can be set to ensure additional reproducibility. Default: None (unseeded). Note: forcing `--batch_size 1` helps to increase reproducibility. To ensure full reproducibility, [deterministic mode](https://pytorch.org/docs/stable/notes/randomness.html#avoiding-nondeterministic-algorithms) needs to be used.
|
168 |
+
- `--batch_size`: Batch size of repeated inference. Default: 0 (best value determined automatically).
|
169 |
+
- `--color_map`: [Colormap](https://matplotlib.org/stable/users/explain/colors/colormaps.html) used to colorize the depth prediction. Default: Spectral. Set to `None` to skip colored depth map generation.
|
170 |
+
- `--apple_silicon`: Use Apple Silicon MPS acceleration.
|
171 |
+
|
172 |
+
### ⬇ Checkpoint cache
|
173 |
+
|
174 |
+
By default, the [checkpoint](https://huggingface.co/prs-eth/marigold-v1-0) is stored in the Hugging Face cache.
|
175 |
+
The `HF_HOME` environment variable defines its location and can be overridden, e.g.:
|
176 |
+
|
177 |
+
```bash
|
178 |
+
export HF_HOME=$(pwd)/cache
|
179 |
+
```
|
180 |
+
|
181 |
+
Alternatively, use the following script to download the checkpoint weights locally:
|
182 |
+
|
183 |
+
```bash
|
184 |
+
bash script/download_weights.sh marigold-v1-0
|
185 |
+
# or LCM checkpoint
|
186 |
+
bash script/download_weights.sh marigold-lcm-v1-0
|
187 |
+
```
|
188 |
+
|
189 |
+
At inference, specify the checkpoint path:
|
190 |
+
|
191 |
+
```bash
|
192 |
+
python run.py \
|
193 |
+
--checkpoint checkpoint/marigold-v1-0 \
|
194 |
+
--denoise_steps 50 \
|
195 |
+
--ensemble_size 10 \
|
196 |
+
--input_rgb_dir input/in-the-wild_example\
|
197 |
+
--output_dir output/in-the-wild_example
|
198 |
+
```
|
199 |
+
|
200 |
+
## 🦿 Evaluation on test datasets <a name="evaluation"></a>
|
201 |
+
|
202 |
+
Install additional dependencies:
|
203 |
+
|
204 |
+
```bash
|
205 |
+
pip install -r requirements+.txt -r requirements.txt
|
206 |
+
```
|
207 |
+
|
208 |
+
Set data directory variable (also needed in evaluation scripts) and download [evaluation datasets](https://share.phys.ethz.ch/~pf/bingkedata/marigold/evaluation_dataset) into corresponding subfolders:
|
209 |
+
|
210 |
+
```bash
|
211 |
+
export BASE_DATA_DIR=<YOUR_DATA_DIR> # Set target data directory
|
212 |
+
|
213 |
+
wget -r -np -nH --cut-dirs=4 -R "index.html*" -P ${BASE_DATA_DIR} https://share.phys.ethz.ch/~pf/bingkedata/marigold/evaluation_dataset/
|
214 |
+
```
|
215 |
+
|
216 |
+
Run inference and evaluation scripts, for example:
|
217 |
+
|
218 |
+
```bash
|
219 |
+
# Run inference
|
220 |
+
bash script/eval/11_infer_nyu.sh
|
221 |
+
|
222 |
+
# Evaluate predictions
|
223 |
+
bash script/eval/12_eval_nyu.sh
|
224 |
+
```
|
225 |
+
|
226 |
+
Note: although the seed has been set, the results might still be slightly different on different hardware.
|
227 |
+
|
228 |
+
## 🏋️ Training
|
229 |
+
|
230 |
+
Based on the previously created environment, install extended requirements:
|
231 |
+
|
232 |
+
```bash
|
233 |
+
pip install -r requirements++.txt -r requirements+.txt -r requirements.txt
|
234 |
+
```
|
235 |
+
|
236 |
+
Set environment parameters for the data directory:
|
237 |
+
|
238 |
+
```bash
|
239 |
+
export BASE_DATA_DIR=YOUR_DATA_DIR # directory of training data
|
240 |
+
export BASE_CKPT_DIR=YOUR_CHECKPOINT_DIR # directory of pretrained checkpoint
|
241 |
+
```
|
242 |
+
|
243 |
+
Download Stable Diffusion v2 [checkpoint](https://huggingface.co/stabilityai/stable-diffusion-2) into `${BASE_CKPT_DIR}`
|
244 |
+
|
245 |
+
Prepare for [Hypersim](https://github.com/apple/ml-hypersim) and [Virtual KITTI 2](https://europe.naverlabs.com/research/computer-vision/proxy-virtual-worlds-vkitti-2/) datasets and save into `${BASE_DATA_DIR}`. Please refer to [this README](script/dataset_preprocess/hypersim/README.md) for Hypersim preprocessing.
|
246 |
+
|
247 |
+
Run training script
|
248 |
+
|
249 |
+
```bash
|
250 |
+
python train.py --config config/train_marigold.yaml
|
251 |
+
```
|
252 |
+
|
253 |
+
Resume from a checkpoint, e.g.
|
254 |
+
|
255 |
+
```bash
|
256 |
+
python train.py --resume_run output/marigold_base/checkpoint/latest
|
257 |
+
```
|
258 |
+
|
259 |
+
Evaluating results
|
260 |
+
|
261 |
+
Only the U-Net is updated and saved during training. To use the inference pipeline with your training result, replace `unet` folder in Marigold checkpoints with that in the `checkpoint` output folder. Then refer to [this section](#evaluation) for evaluation.
|
262 |
+
|
263 |
+
**Note**: Although random seeds have been set, the training result might be slightly different on different hardwares. It's recommended to train without interruption.
|
264 |
+
|
265 |
+
## ✏️ Contributing
|
266 |
+
|
267 |
+
Please refer to [this](CONTRIBUTING.md) instruction.
|
268 |
+
|
269 |
+
## 🤔 Troubleshooting
|
270 |
+
|
271 |
+
| Problem | Solution |
|
272 |
+
|----------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
|
273 |
+
| (Windows) Invalid DOS bash script on WSL | Run `dos2unix <script_name>` to convert script format |
|
274 |
+
| (Windows) error on WSL: `Could not load library libcudnn_cnn_infer.so.8. Error: libcuda.so: cannot open shared object file: No such file or directory` | Run `export LD_LIBRARY_PATH=/usr/lib/wsl/lib:$LD_LIBRARY_PATH` |
|
275 |
+
|
276 |
+
|
277 |
+
## 🎓 Citation
|
278 |
+
|
279 |
+
Please cite our paper:
|
280 |
+
|
281 |
+
```bibtex
|
282 |
+
@InProceedings{ke2023repurposing,
|
283 |
+
title={Repurposing Diffusion-Based Image Generators for Monocular Depth Estimation},
|
284 |
+
author={Bingxin Ke and Anton Obukhov and Shengyu Huang and Nando Metzger and Rodrigo Caye Daudt and Konrad Schindler},
|
285 |
+
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
286 |
+
year={2024}
|
287 |
+
}
|
288 |
+
```
|
289 |
+
|
290 |
+
## 🎫 License
|
291 |
+
|
292 |
+
This work is licensed under the Apache License, Version 2.0 (as defined in the [LICENSE](LICENSE.txt)).
|
293 |
+
|
294 |
+
By downloading and using the code and model you agree to the terms in the [LICENSE](LICENSE.txt).
|
295 |
+
|
296 |
+
[![License](https://img.shields.io/badge/License-Apache--2.0-929292)](https://www.apache.org/licenses/LICENSE-2.0)
|
Marigold-main/config/dataset/data_diode_all.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: diode
|
2 |
+
disp_name: diode_val_all
|
3 |
+
dir: diode/diode_val.tar
|
4 |
+
filenames: data_split/diode/diode_val_all_filename_list.txt
|
Marigold-main/config/dataset/data_eth3d.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: eth3d
|
2 |
+
disp_name: eth3d_full
|
3 |
+
dir: eth3d/eth3d.tar
|
4 |
+
filenames: data_split/eth3d/eth3d_filename_list.txt
|
Marigold-main/config/dataset/data_hypersim_train.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: hypersim
|
2 |
+
disp_name: hypersim_train
|
3 |
+
dir: hypersim/hypersim_processed_train.tar
|
4 |
+
filenames: data_split/hypersim/filename_list_train_filtered.txt
|
Marigold-main/config/dataset/data_hypersim_val.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: hypersim
|
2 |
+
disp_name: hypersim_val
|
3 |
+
dir: hypersim/hypersim_processed_val.tar
|
4 |
+
filenames: data_split/hypersim/filename_list_val_filtered.txt
|
Marigold-main/config/dataset/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: data_split/kitti/eigen_test_files_with_gt.txt
|
5 |
+
kitti_bm_crop: true
|
6 |
+
valid_mask_crop: eigen
|
Marigold-main/config/dataset/data_kitti_val.yaml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: kitti
|
2 |
+
disp_name: kitti_val800_from_eigen_train
|
3 |
+
dir: kitti/kitti_sampled_val_800.tar
|
4 |
+
filenames: data_split/kitti/eigen_val_from_train_800.txt
|
5 |
+
kitti_bm_crop: true
|
6 |
+
valid_mask_crop: eigen
|
Marigold-main/config/dataset/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: data_split/nyu/labeled/filename_list_test.txt
|
5 |
+
eigen_valid_mask: true
|
Marigold-main/config/dataset/data_nyu_train.yaml
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: nyu_v2
|
2 |
+
disp_name: nyu_train_full
|
3 |
+
dir: nyuv2/nyu_labeled_extracted.tar
|
4 |
+
filenames: data_split/nyu/labeled/filename_list_train.txt
|
5 |
+
eigen_valid_mask: true
|
Marigold-main/config/dataset/data_scannet_val.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: scannet
|
2 |
+
disp_name: scannet_val_800_1
|
3 |
+
dir: scannet/scannet_val_sampled_800_1.tar
|
4 |
+
filenames: data_split/scannet/scannet_val_sampled_list_800_1.txt
|
Marigold-main/config/dataset/data_vkitti_train.yaml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: vkitti
|
2 |
+
disp_name: vkitti_train
|
3 |
+
dir: vkitti/vkitti.tar
|
4 |
+
filenames: data_split/vkitti/vkitti_train.txt
|
5 |
+
kitti_bm_crop: true
|
6 |
+
valid_mask_crop: null # no valid_mask_crop for training
|
Marigold-main/config/dataset/data_vkitti_val.yaml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: vkitti
|
2 |
+
disp_name: vkitti_val
|
3 |
+
dir: vkitti/vkitti.tar
|
4 |
+
filenames: data_split/vkitti/vkitti_val.txt
|
5 |
+
kitti_bm_crop: true
|
6 |
+
valid_mask_crop: eigen
|
Marigold-main/config/dataset/dataset_train.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dataset:
|
2 |
+
train:
|
3 |
+
name: mixed
|
4 |
+
prob_ls: [0.9, 0.1]
|
5 |
+
dataset_list:
|
6 |
+
- name: hypersim
|
7 |
+
disp_name: hypersim_train
|
8 |
+
dir: hypersim/hypersim_processed_train.tar
|
9 |
+
filenames: data_split/hypersim/filename_list_train_filtered.txt
|
10 |
+
resize_to_hw:
|
11 |
+
- 480
|
12 |
+
- 640
|
13 |
+
- name: vkitti
|
14 |
+
disp_name: vkitti_train
|
15 |
+
dir: vkitti/vkitti.tar
|
16 |
+
filenames: data_split/vkitti/vkitti_train.txt
|
17 |
+
kitti_bm_crop: true
|
18 |
+
valid_mask_crop: null
|
Marigold-main/config/dataset/dataset_val.yaml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dataset:
|
2 |
+
val:
|
3 |
+
# - name: hypersim
|
4 |
+
# disp_name: hypersim_val
|
5 |
+
# dir: hypersim/hypersim_processed_val.tar
|
6 |
+
# filenames: data_split/hypersim/filename_list_val_filtered.txt
|
7 |
+
# resize_to_hw:
|
8 |
+
# - 480
|
9 |
+
# - 640
|
10 |
+
|
11 |
+
# - name: nyu_v2
|
12 |
+
# disp_name: nyu_train_full
|
13 |
+
# dir: nyuv2/nyu_labeled_extracted.tar
|
14 |
+
# filenames: data_split/nyu/labeled/filename_list_train.txt
|
15 |
+
# eigen_valid_mask: true
|
16 |
+
|
17 |
+
# - name: kitti
|
18 |
+
# disp_name: kitti_val800_from_eigen_train
|
19 |
+
# dir: kitti/kitti_sampled_val_800.tar
|
20 |
+
# filenames: data_split/kitti/eigen_val_from_train_800.txt
|
21 |
+
# kitti_bm_crop: true
|
22 |
+
# valid_mask_crop: eigen
|
23 |
+
|
24 |
+
# Smaller subsets for faster validation during training
|
25 |
+
# The first dataset is used to calculate main eval metric.
|
26 |
+
- name: hypersim
|
27 |
+
disp_name: hypersim_val_small_80
|
28 |
+
dir: hypersim/hypersim_processed_val.tar
|
29 |
+
filenames: data_split/hypersim/filename_list_val_filtered_small_80.txt
|
30 |
+
resize_to_hw:
|
31 |
+
- 480
|
32 |
+
- 640
|
33 |
+
|
34 |
+
- name: nyu_v2
|
35 |
+
disp_name: nyu_train_small_100
|
36 |
+
dir: nyuv2/nyu_labeled_extracted.tar
|
37 |
+
filenames: data_split/nyu/labeled/filename_list_train_small_100.txt
|
38 |
+
eigen_valid_mask: true
|
39 |
+
|
40 |
+
- name: kitti
|
41 |
+
disp_name: kitti_val_from_train_sub_100
|
42 |
+
dir: kitti/kitti_sampled_val_800.tar
|
43 |
+
filenames: data_split/kitti/eigen_val_from_train_sub_100.txt
|
44 |
+
kitti_bm_crop: true
|
45 |
+
valid_mask_crop: eigen
|
Marigold-main/config/dataset/dataset_vis.yaml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dataset:
|
2 |
+
vis:
|
3 |
+
- name: hypersim
|
4 |
+
disp_name: hypersim_vis
|
5 |
+
dir: hypersim/hypersim_processed_val.tar
|
6 |
+
filenames: data_split/hypersim/selected_vis_sample.txt
|
7 |
+
resize_to_hw:
|
8 |
+
- 480
|
9 |
+
- 640
|
Marigold-main/config/logging.yaml
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
logging:
|
2 |
+
filename: logging.log
|
3 |
+
format: ' %(asctime)s - %(levelname)s -%(filename)s - %(funcName)s >> %(message)s'
|
4 |
+
console_level: 20
|
5 |
+
file_level: 10
|
Marigold-main/config/model_sdv2.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
model:
|
2 |
+
name: marigold_pipeline
|
3 |
+
pretrained_path: stable-diffusion-2
|
4 |
+
latent_scale_factor: 0.18215
|
Marigold-main/config/train_debug.yaml
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
base_config:
|
2 |
+
- config/train_marigold.yaml
|
3 |
+
|
4 |
+
|
5 |
+
# Training settings
|
6 |
+
trainer:
|
7 |
+
save_period: 5
|
8 |
+
backup_period: 10
|
9 |
+
validation_period: 5
|
10 |
+
visualization_period: 5
|
11 |
+
|
12 |
+
max_iter: 50
|
Marigold-main/config/train_marigold.yaml
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
base_config:
|
2 |
+
- config/logging.yaml
|
3 |
+
- config/wandb.yaml
|
4 |
+
- config/dataset/dataset_train.yaml
|
5 |
+
- config/dataset/dataset_val.yaml
|
6 |
+
- config/dataset/dataset_vis.yaml
|
7 |
+
- config/model_sdv2.yaml
|
8 |
+
|
9 |
+
|
10 |
+
pipeline:
|
11 |
+
name: MarigoldPipeline
|
12 |
+
kwargs:
|
13 |
+
scale_invariant: true
|
14 |
+
shift_invariant: true
|
15 |
+
|
16 |
+
depth_normalization:
|
17 |
+
type: scale_shift_depth
|
18 |
+
clip: true
|
19 |
+
norm_min: -1.0
|
20 |
+
norm_max: 1.0
|
21 |
+
min_max_quantile: 0.02
|
22 |
+
|
23 |
+
augmentation:
|
24 |
+
lr_flip_p: 0.5
|
25 |
+
|
26 |
+
dataloader:
|
27 |
+
num_workers: 2
|
28 |
+
effective_batch_size: 32
|
29 |
+
max_train_batch_size: 2
|
30 |
+
seed: 2024 # to ensure continuity when resuming from checkpoint
|
31 |
+
|
32 |
+
# Training settings
|
33 |
+
trainer:
|
34 |
+
name: MarigoldTrainer
|
35 |
+
training_noise_scheduler:
|
36 |
+
pretrained_path: stable-diffusion-2
|
37 |
+
init_seed: 2024 # use null to train w/o seeding
|
38 |
+
save_period: 50
|
39 |
+
backup_period: 2000
|
40 |
+
validation_period: 2000
|
41 |
+
visualization_period: 2000
|
42 |
+
|
43 |
+
multi_res_noise:
|
44 |
+
strength: 0.9
|
45 |
+
annealed: true
|
46 |
+
downscale_strategy: original
|
47 |
+
|
48 |
+
gt_depth_type: depth_raw_norm
|
49 |
+
gt_mask_type: valid_mask_raw
|
50 |
+
|
51 |
+
max_epoch: 10000 # a large enough number
|
52 |
+
max_iter: 30000 # usually converges at around 20k
|
53 |
+
|
54 |
+
optimizer:
|
55 |
+
name: Adam
|
56 |
+
|
57 |
+
loss:
|
58 |
+
name: mse_loss
|
59 |
+
kwargs:
|
60 |
+
reduction: mean
|
61 |
+
|
62 |
+
lr: 3.0e-05
|
63 |
+
lr_scheduler:
|
64 |
+
name: IterExponential
|
65 |
+
kwargs:
|
66 |
+
total_iter: 25000
|
67 |
+
final_ratio: 0.01
|
68 |
+
warmup_steps: 100
|
69 |
+
|
70 |
+
# Validation (and visualization) settings
|
71 |
+
validation:
|
72 |
+
denoising_steps: 50
|
73 |
+
ensemble_size: 1 # simplified setting for on-training validation
|
74 |
+
processing_res: 0
|
75 |
+
match_input_res: false
|
76 |
+
resample_method: bilinear
|
77 |
+
main_val_metric: abs_relative_difference
|
78 |
+
main_val_metric_goal: minimize
|
79 |
+
init_seed: 2024
|
80 |
+
|
81 |
+
eval:
|
82 |
+
alignment: least_square
|
83 |
+
align_max_res: null
|
84 |
+
eval_metrics:
|
85 |
+
- abs_relative_difference
|
86 |
+
- squared_relative_difference
|
87 |
+
- rmse_linear
|
88 |
+
- rmse_log
|
89 |
+
- log10
|
90 |
+
- delta1_acc
|
91 |
+
- delta2_acc
|
92 |
+
- delta3_acc
|
93 |
+
- i_rmse
|
94 |
+
- silog_rmse
|
Marigold-main/config/wandb.yaml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
wandb:
|
2 |
+
# entity: your_entity
|
3 |
+
project: marigold
|
Marigold-main/data_split/diode/diode_val_all_filename_list.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/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
|
Marigold-main/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
|
Marigold-main/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
|
Marigold-main/data_split/hypersim/filename_list_test_filtered.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/data_split/hypersim/filename_list_train_filtered.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/data_split/hypersim/filename_list_val_filtered.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/data_split/hypersim/filename_list_val_filtered_small_80.txt
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ai_003_010/rgb_cam_00_fr0047.png ai_003_010/depth_plane_cam_00_fr0047.png
|
2 |
+
ai_003_010/rgb_cam_00_fr0048.png ai_003_010/depth_plane_cam_00_fr0048.png
|
3 |
+
ai_003_010/rgb_cam_01_fr0098.png ai_003_010/depth_plane_cam_01_fr0098.png
|
4 |
+
ai_004_003/rgb_cam_01_fr0008.png ai_004_003/depth_plane_cam_01_fr0008.png
|
5 |
+
ai_004_004/rgb_cam_00_fr0025.png ai_004_004/depth_plane_cam_00_fr0025.png
|
6 |
+
ai_004_004/rgb_cam_00_fr0046.png ai_004_004/depth_plane_cam_00_fr0046.png
|
7 |
+
ai_004_004/rgb_cam_00_fr0049.png ai_004_004/depth_plane_cam_00_fr0049.png
|
8 |
+
ai_004_004/rgb_cam_01_fr0023.png ai_004_004/depth_plane_cam_01_fr0023.png
|
9 |
+
ai_005_005/rgb_cam_00_fr0032.png ai_005_005/depth_plane_cam_00_fr0032.png
|
10 |
+
ai_006_007/rgb_cam_00_fr0022.png ai_006_007/depth_plane_cam_00_fr0022.png
|
11 |
+
ai_006_007/rgb_cam_00_fr0095.png ai_006_007/depth_plane_cam_00_fr0095.png
|
12 |
+
ai_007_001/rgb_cam_00_fr0044.png ai_007_001/depth_plane_cam_00_fr0044.png
|
13 |
+
ai_007_001/rgb_cam_00_fr0048.png ai_007_001/depth_plane_cam_00_fr0048.png
|
14 |
+
ai_009_007/rgb_cam_00_fr0017.png ai_009_007/depth_plane_cam_00_fr0017.png
|
15 |
+
ai_009_007/rgb_cam_00_fr0097.png ai_009_007/depth_plane_cam_00_fr0097.png
|
16 |
+
ai_009_009/rgb_cam_00_fr0094.png ai_009_009/depth_plane_cam_00_fr0094.png
|
17 |
+
ai_015_001/rgb_cam_00_fr0058.png ai_015_001/depth_plane_cam_00_fr0058.png
|
18 |
+
ai_015_001/rgb_cam_00_fr0089.png ai_015_001/depth_plane_cam_00_fr0089.png
|
19 |
+
ai_017_007/rgb_cam_01_fr0064.png ai_017_007/depth_plane_cam_01_fr0064.png
|
20 |
+
ai_018_005/rgb_cam_00_fr0014.png ai_018_005/depth_plane_cam_00_fr0014.png
|
21 |
+
ai_018_005/rgb_cam_00_fr0059.png ai_018_005/depth_plane_cam_00_fr0059.png
|
22 |
+
ai_022_010/rgb_cam_00_fr0097.png ai_022_010/depth_plane_cam_00_fr0097.png
|
23 |
+
ai_022_010/rgb_cam_00_fr0099.png ai_022_010/depth_plane_cam_00_fr0099.png
|
24 |
+
ai_023_003/rgb_cam_00_fr0013.png ai_023_003/depth_plane_cam_00_fr0013.png
|
25 |
+
ai_023_003/rgb_cam_00_fr0015.png ai_023_003/depth_plane_cam_00_fr0015.png
|
26 |
+
ai_023_003/rgb_cam_00_fr0036.png ai_023_003/depth_plane_cam_00_fr0036.png
|
27 |
+
ai_023_003/rgb_cam_00_fr0095.png ai_023_003/depth_plane_cam_00_fr0095.png
|
28 |
+
ai_023_003/rgb_cam_01_fr0029.png ai_023_003/depth_plane_cam_01_fr0029.png
|
29 |
+
ai_023_003/rgb_cam_01_fr0036.png ai_023_003/depth_plane_cam_01_fr0036.png
|
30 |
+
ai_023_003/rgb_cam_01_fr0071.png ai_023_003/depth_plane_cam_01_fr0071.png
|
31 |
+
ai_032_007/rgb_cam_00_fr0031.png ai_032_007/depth_plane_cam_00_fr0031.png
|
32 |
+
ai_032_007/rgb_cam_00_fr0040.png ai_032_007/depth_plane_cam_00_fr0040.png
|
33 |
+
ai_032_007/rgb_cam_00_fr0075.png ai_032_007/depth_plane_cam_00_fr0075.png
|
34 |
+
ai_035_003/rgb_cam_00_fr0054.png ai_035_003/depth_plane_cam_00_fr0054.png
|
35 |
+
ai_035_004/rgb_cam_00_fr0077.png ai_035_004/depth_plane_cam_00_fr0077.png
|
36 |
+
ai_038_009/rgb_cam_00_fr0031.png ai_038_009/depth_plane_cam_00_fr0031.png
|
37 |
+
ai_038_009/rgb_cam_01_fr0010.png ai_038_009/depth_plane_cam_01_fr0010.png
|
38 |
+
ai_038_009/rgb_cam_01_fr0088.png ai_038_009/depth_plane_cam_01_fr0088.png
|
39 |
+
ai_039_003/rgb_cam_01_fr0042.png ai_039_003/depth_plane_cam_01_fr0042.png
|
40 |
+
ai_039_003/rgb_cam_01_fr0097.png ai_039_003/depth_plane_cam_01_fr0097.png
|
41 |
+
ai_044_001/rgb_cam_00_fr0043.png ai_044_001/depth_plane_cam_00_fr0043.png
|
42 |
+
ai_044_001/rgb_cam_01_fr0018.png ai_044_001/depth_plane_cam_01_fr0018.png
|
43 |
+
ai_044_003/rgb_cam_01_fr0082.png ai_044_003/depth_plane_cam_01_fr0082.png
|
44 |
+
ai_044_003/rgb_cam_01_fr0087.png ai_044_003/depth_plane_cam_01_fr0087.png
|
45 |
+
ai_044_003/rgb_cam_02_fr0086.png ai_044_003/depth_plane_cam_02_fr0086.png
|
46 |
+
ai_044_003/rgb_cam_03_fr0022.png ai_044_003/depth_plane_cam_03_fr0022.png
|
47 |
+
ai_044_003/rgb_cam_03_fr0063.png ai_044_003/depth_plane_cam_03_fr0063.png
|
48 |
+
ai_045_008/rgb_cam_00_fr0015.png ai_045_008/depth_plane_cam_00_fr0015.png
|
49 |
+
ai_045_008/rgb_cam_00_fr0030.png ai_045_008/depth_plane_cam_00_fr0030.png
|
50 |
+
ai_045_008/rgb_cam_01_fr0029.png ai_045_008/depth_plane_cam_01_fr0029.png
|
51 |
+
ai_045_008/rgb_cam_01_fr0052.png ai_045_008/depth_plane_cam_01_fr0052.png
|
52 |
+
ai_045_008/rgb_cam_01_fr0088.png ai_045_008/depth_plane_cam_01_fr0088.png
|
53 |
+
ai_047_009/rgb_cam_00_fr0097.png ai_047_009/depth_plane_cam_00_fr0097.png
|
54 |
+
ai_048_001/rgb_cam_00_fr0014.png ai_048_001/depth_plane_cam_00_fr0014.png
|
55 |
+
ai_048_001/rgb_cam_00_fr0088.png ai_048_001/depth_plane_cam_00_fr0088.png
|
56 |
+
ai_048_001/rgb_cam_01_fr0045.png ai_048_001/depth_plane_cam_01_fr0045.png
|
57 |
+
ai_048_001/rgb_cam_02_fr0031.png ai_048_001/depth_plane_cam_02_fr0031.png
|
58 |
+
ai_048_001/rgb_cam_03_fr0005.png ai_048_001/depth_plane_cam_03_fr0005.png
|
59 |
+
ai_048_001/rgb_cam_03_fr0045.png ai_048_001/depth_plane_cam_03_fr0045.png
|
60 |
+
ai_048_001/rgb_cam_03_fr0054.png ai_048_001/depth_plane_cam_03_fr0054.png
|
61 |
+
ai_048_001/rgb_cam_03_fr0061.png ai_048_001/depth_plane_cam_03_fr0061.png
|
62 |
+
ai_050_002/rgb_cam_01_fr0016.png ai_050_002/depth_plane_cam_01_fr0016.png
|
63 |
+
ai_050_002/rgb_cam_02_fr0053.png ai_050_002/depth_plane_cam_02_fr0053.png
|
64 |
+
ai_050_002/rgb_cam_03_fr0082.png ai_050_002/depth_plane_cam_03_fr0082.png
|
65 |
+
ai_050_002/rgb_cam_04_fr0033.png ai_050_002/depth_plane_cam_04_fr0033.png
|
66 |
+
ai_051_004/rgb_cam_00_fr0028.png ai_051_004/depth_plane_cam_00_fr0028.png
|
67 |
+
ai_051_004/rgb_cam_01_fr0065.png ai_051_004/depth_plane_cam_01_fr0065.png
|
68 |
+
ai_051_004/rgb_cam_02_fr0054.png ai_051_004/depth_plane_cam_02_fr0054.png
|
69 |
+
ai_051_004/rgb_cam_02_fr0056.png ai_051_004/depth_plane_cam_02_fr0056.png
|
70 |
+
ai_051_004/rgb_cam_03_fr0037.png ai_051_004/depth_plane_cam_03_fr0037.png
|
71 |
+
ai_051_004/rgb_cam_04_fr0083.png ai_051_004/depth_plane_cam_04_fr0083.png
|
72 |
+
ai_051_004/rgb_cam_05_fr0003.png ai_051_004/depth_plane_cam_05_fr0003.png
|
73 |
+
ai_052_001/rgb_cam_00_fr0008.png ai_052_001/depth_plane_cam_00_fr0008.png
|
74 |
+
ai_052_003/rgb_cam_00_fr0097.png ai_052_003/depth_plane_cam_00_fr0097.png
|
75 |
+
ai_052_003/rgb_cam_01_fr0081.png ai_052_003/depth_plane_cam_01_fr0081.png
|
76 |
+
ai_052_007/rgb_cam_01_fr0001.png ai_052_007/depth_plane_cam_01_fr0001.png
|
77 |
+
ai_053_003/rgb_cam_00_fr0005.png ai_053_003/depth_plane_cam_00_fr0005.png
|
78 |
+
ai_053_005/rgb_cam_00_fr0080.png ai_053_005/depth_plane_cam_00_fr0080.png
|
79 |
+
ai_055_009/rgb_cam_01_fr0070.png ai_055_009/depth_plane_cam_01_fr0070.png
|
80 |
+
ai_055_009/rgb_cam_01_fr0086.png ai_055_009/depth_plane_cam_01_fr0086.png
|
Marigold-main/data_split/hypersim/selected_vis_sample.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
ai_015_004/rgb_cam_00_fr0002.png ai_015_004/depth_plane_cam_00_fr0002.png (val)
|
2 |
+
ai_044_003/rgb_cam_01_fr0063.png ai_044_003/depth_plane_cam_01_fr0063.png (val)
|
3 |
+
ai_052_003/rgb_cam_01_fr0076.png ai_052_003/depth_plane_cam_01_fr0076.png (val)
|
Marigold-main/data_split/kitti/eigen_test_files_with_gt.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/data_split/kitti/eigen_val_from_train_800.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/data_split/kitti/eigen_val_from_train_sub_100.txt
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
2011_09_26/2011_09_26_drive_0001_sync/image_02/data/0000000046.png 2011_09_26_drive_0001_sync/proj_depth/groundtruth/image_02/0000000046.png 721.5377
|
2 |
+
2011_09_26/2011_09_26_drive_0005_sync/image_02/data/0000000148.png 2011_09_26_drive_0005_sync/proj_depth/groundtruth/image_02/0000000148.png 721.5377
|
3 |
+
2011_09_26/2011_09_26_drive_0014_sync/image_02/data/0000000076.png 2011_09_26_drive_0014_sync/proj_depth/groundtruth/image_02/0000000076.png 721.5377
|
4 |
+
2011_09_26/2011_09_26_drive_0015_sync/image_02/data/0000000019.png 2011_09_26_drive_0015_sync/proj_depth/groundtruth/image_02/0000000019.png 721.5377
|
5 |
+
2011_09_26/2011_09_26_drive_0015_sync/image_02/data/0000000194.png 2011_09_26_drive_0015_sync/proj_depth/groundtruth/image_02/0000000194.png 721.5377
|
6 |
+
2011_09_26/2011_09_26_drive_0018_sync/image_02/data/0000000106.png 2011_09_26_drive_0018_sync/proj_depth/groundtruth/image_02/0000000106.png 721.5377
|
7 |
+
2011_09_26/2011_09_26_drive_0019_sync/image_02/data/0000000263.png 2011_09_26_drive_0019_sync/proj_depth/groundtruth/image_02/0000000263.png 721.5377
|
8 |
+
2011_09_26/2011_09_26_drive_0019_sync/image_02/data/0000000274.png 2011_09_26_drive_0019_sync/proj_depth/groundtruth/image_02/0000000274.png 721.5377
|
9 |
+
2011_09_26/2011_09_26_drive_0022_sync/image_02/data/0000000015.png 2011_09_26_drive_0022_sync/proj_depth/groundtruth/image_02/0000000015.png 721.5377
|
10 |
+
2011_09_26/2011_09_26_drive_0022_sync/image_02/data/0000000123.png 2011_09_26_drive_0022_sync/proj_depth/groundtruth/image_02/0000000123.png 721.5377
|
11 |
+
2011_09_26/2011_09_26_drive_0022_sync/image_02/data/0000000149.png 2011_09_26_drive_0022_sync/proj_depth/groundtruth/image_02/0000000149.png 721.5377
|
12 |
+
2011_09_26/2011_09_26_drive_0022_sync/image_02/data/0000000308.png 2011_09_26_drive_0022_sync/proj_depth/groundtruth/image_02/0000000308.png 721.5377
|
13 |
+
2011_09_26/2011_09_26_drive_0022_sync/image_02/data/0000000553.png 2011_09_26_drive_0022_sync/proj_depth/groundtruth/image_02/0000000553.png 721.5377
|
14 |
+
2011_09_26/2011_09_26_drive_0022_sync/image_02/data/0000000691.png 2011_09_26_drive_0022_sync/proj_depth/groundtruth/image_02/0000000691.png 721.5377
|
15 |
+
2011_09_26/2011_09_26_drive_0028_sync/image_02/data/0000000270.png 2011_09_26_drive_0028_sync/proj_depth/groundtruth/image_02/0000000270.png 721.5377
|
16 |
+
2011_09_26/2011_09_26_drive_0035_sync/image_02/data/0000000085.png 2011_09_26_drive_0035_sync/proj_depth/groundtruth/image_02/0000000085.png 721.5377
|
17 |
+
2011_09_26/2011_09_26_drive_0039_sync/image_02/data/0000000326.png 2011_09_26_drive_0039_sync/proj_depth/groundtruth/image_02/0000000326.png 721.5377
|
18 |
+
2011_09_26/2011_09_26_drive_0051_sync/image_02/data/0000000429.png 2011_09_26_drive_0051_sync/proj_depth/groundtruth/image_02/0000000429.png 721.5377
|
19 |
+
2011_09_26/2011_09_26_drive_0057_sync/image_02/data/0000000010.png 2011_09_26_drive_0057_sync/proj_depth/groundtruth/image_02/0000000010.png 721.5377
|
20 |
+
2011_09_26/2011_09_26_drive_0060_sync/image_02/data/0000000020.png 2011_09_26_drive_0060_sync/proj_depth/groundtruth/image_02/0000000020.png 721.5377
|
21 |
+
2011_09_26/2011_09_26_drive_0061_sync/image_02/data/0000000223.png 2011_09_26_drive_0061_sync/proj_depth/groundtruth/image_02/0000000223.png 721.5377
|
22 |
+
2011_09_26/2011_09_26_drive_0061_sync/image_02/data/0000000262.png 2011_09_26_drive_0061_sync/proj_depth/groundtruth/image_02/0000000262.png 721.5377
|
23 |
+
2011_09_26/2011_09_26_drive_0061_sync/image_02/data/0000000291.png 2011_09_26_drive_0061_sync/proj_depth/groundtruth/image_02/0000000291.png 721.5377
|
24 |
+
2011_09_26/2011_09_26_drive_0061_sync/image_02/data/0000000523.png 2011_09_26_drive_0061_sync/proj_depth/groundtruth/image_02/0000000523.png 721.5377
|
25 |
+
2011_09_26/2011_09_26_drive_0061_sync/image_02/data/0000000524.png 2011_09_26_drive_0061_sync/proj_depth/groundtruth/image_02/0000000524.png 721.5377
|
26 |
+
2011_09_26/2011_09_26_drive_0070_sync/image_02/data/0000000063.png 2011_09_26_drive_0070_sync/proj_depth/groundtruth/image_02/0000000063.png 721.5377
|
27 |
+
2011_09_26/2011_09_26_drive_0070_sync/image_02/data/0000000320.png 2011_09_26_drive_0070_sync/proj_depth/groundtruth/image_02/0000000320.png 721.5377
|
28 |
+
2011_09_26/2011_09_26_drive_0087_sync/image_02/data/0000000313.png 2011_09_26_drive_0087_sync/proj_depth/groundtruth/image_02/0000000313.png 721.5377
|
29 |
+
2011_09_26/2011_09_26_drive_0087_sync/image_02/data/0000000316.png 2011_09_26_drive_0087_sync/proj_depth/groundtruth/image_02/0000000316.png 721.5377
|
30 |
+
2011_09_26/2011_09_26_drive_0087_sync/image_02/data/0000000363.png 2011_09_26_drive_0087_sync/proj_depth/groundtruth/image_02/0000000363.png 721.5377
|
31 |
+
2011_09_26/2011_09_26_drive_0087_sync/image_02/data/0000000438.png 2011_09_26_drive_0087_sync/proj_depth/groundtruth/image_02/0000000438.png 721.5377
|
32 |
+
2011_09_26/2011_09_26_drive_0091_sync/image_02/data/0000000137.png 2011_09_26_drive_0091_sync/proj_depth/groundtruth/image_02/0000000137.png 721.5377
|
33 |
+
2011_09_26/2011_09_26_drive_0091_sync/image_02/data/0000000143.png 2011_09_26_drive_0091_sync/proj_depth/groundtruth/image_02/0000000143.png 721.5377
|
34 |
+
2011_09_26/2011_09_26_drive_0091_sync/image_02/data/0000000278.png 2011_09_26_drive_0091_sync/proj_depth/groundtruth/image_02/0000000278.png 721.5377
|
35 |
+
2011_09_26/2011_09_26_drive_0091_sync/image_02/data/0000000312.png 2011_09_26_drive_0091_sync/proj_depth/groundtruth/image_02/0000000312.png 721.5377
|
36 |
+
2011_09_26/2011_09_26_drive_0095_sync/image_02/data/0000000160.png 2011_09_26_drive_0095_sync/proj_depth/groundtruth/image_02/0000000160.png 721.5377
|
37 |
+
2011_09_26/2011_09_26_drive_0104_sync/image_02/data/0000000011.png 2011_09_26_drive_0104_sync/proj_depth/groundtruth/image_02/0000000011.png 721.5377
|
38 |
+
2011_09_26/2011_09_26_drive_0113_sync/image_02/data/0000000052.png 2011_09_26_drive_0113_sync/proj_depth/groundtruth/image_02/0000000052.png 721.5377
|
39 |
+
2011_09_26/2011_09_26_drive_0113_sync/image_02/data/0000000055.png 2011_09_26_drive_0113_sync/proj_depth/groundtruth/image_02/0000000055.png 721.5377
|
40 |
+
2011_09_29/2011_09_29_drive_0004_sync/image_02/data/0000000065.png 2011_09_29_drive_0004_sync/proj_depth/groundtruth/image_02/0000000065.png 718.3351
|
41 |
+
2011_09_30/2011_09_30_drive_0020_sync/image_02/data/0000000325.png 2011_09_30_drive_0020_sync/proj_depth/groundtruth/image_02/0000000325.png 707.0912
|
42 |
+
2011_09_30/2011_09_30_drive_0020_sync/image_02/data/0000000959.png 2011_09_30_drive_0020_sync/proj_depth/groundtruth/image_02/0000000959.png 707.0912
|
43 |
+
2011_09_30/2011_09_30_drive_0020_sync/image_02/data/0000001004.png 2011_09_30_drive_0020_sync/proj_depth/groundtruth/image_02/0000001004.png 707.0912
|
44 |
+
2011_09_30/2011_09_30_drive_0020_sync/image_02/data/0000001054.png 2011_09_30_drive_0020_sync/proj_depth/groundtruth/image_02/0000001054.png 707.0912
|
45 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000000545.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000000545.png 707.0912
|
46 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000000920.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000000920.png 707.0912
|
47 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000001593.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000001593.png 707.0912
|
48 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000001692.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000001692.png 707.0912
|
49 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000001806.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000001806.png 707.0912
|
50 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000001905.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000001905.png 707.0912
|
51 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000002714.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000002714.png 707.0912
|
52 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000002812.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000002812.png 707.0912
|
53 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000002838.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000002838.png 707.0912
|
54 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000003402.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000003402.png 707.0912
|
55 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000003700.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000003700.png 707.0912
|
56 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000004016.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000004016.png 707.0912
|
57 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000004276.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000004276.png 707.0912
|
58 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000004664.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000004664.png 707.0912
|
59 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000004772.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000004772.png 707.0912
|
60 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000004782.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000004782.png 707.0912
|
61 |
+
2011_09_30/2011_09_30_drive_0028_sync/image_02/data/0000005095.png 2011_09_30_drive_0028_sync/proj_depth/groundtruth/image_02/0000005095.png 707.0912
|
62 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000000319.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000000319.png 707.0912
|
63 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000000355.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000000355.png 707.0912
|
64 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000000500.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000000500.png 707.0912
|
65 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000000682.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000000682.png 707.0912
|
66 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000000710.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000000710.png 707.0912
|
67 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000000896.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000000896.png 707.0912
|
68 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000001197.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000001197.png 707.0912
|
69 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000001508.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000001508.png 707.0912
|
70 |
+
2011_09_30/2011_09_30_drive_0033_sync/image_02/data/0000001512.png 2011_09_30_drive_0033_sync/proj_depth/groundtruth/image_02/0000001512.png 707.0912
|
71 |
+
2011_09_30/2011_09_30_drive_0034_sync/image_02/data/0000000029.png 2011_09_30_drive_0034_sync/proj_depth/groundtruth/image_02/0000000029.png 707.0912
|
72 |
+
2011_09_30/2011_09_30_drive_0034_sync/image_02/data/0000000171.png 2011_09_30_drive_0034_sync/proj_depth/groundtruth/image_02/0000000171.png 707.0912
|
73 |
+
2011_09_30/2011_09_30_drive_0034_sync/image_02/data/0000000193.png 2011_09_30_drive_0034_sync/proj_depth/groundtruth/image_02/0000000193.png 707.0912
|
74 |
+
2011_09_30/2011_09_30_drive_0034_sync/image_02/data/0000000389.png 2011_09_30_drive_0034_sync/proj_depth/groundtruth/image_02/0000000389.png 707.0912
|
75 |
+
2011_09_30/2011_09_30_drive_0034_sync/image_02/data/0000001141.png 2011_09_30_drive_0034_sync/proj_depth/groundtruth/image_02/0000001141.png 707.0912
|
76 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000000138.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000000138.png 718.856
|
77 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000000593.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000000593.png 718.856
|
78 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000001046.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000001046.png 718.856
|
79 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000001151.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000001151.png 718.856
|
80 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000001255.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000001255.png 718.856
|
81 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000001283.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000001283.png 718.856
|
82 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000001737.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000001737.png 718.856
|
83 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000001999.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000001999.png 718.856
|
84 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000002012.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000002012.png 718.856
|
85 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000002089.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000002089.png 718.856
|
86 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000002324.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000002324.png 718.856
|
87 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000002902.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000002902.png 718.856
|
88 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000002971.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000002971.png 718.856
|
89 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000003299.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000003299.png 718.856
|
90 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000003366.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000003366.png 718.856
|
91 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000003427.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000003427.png 718.856
|
92 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000003440.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000003440.png 718.856
|
93 |
+
2011_10_03/2011_10_03_drive_0034_sync/image_02/data/0000004060.png 2011_10_03_drive_0034_sync/proj_depth/groundtruth/image_02/0000004060.png 718.856
|
94 |
+
2011_10_03/2011_10_03_drive_0042_sync/image_02/data/0000000525.png 2011_10_03_drive_0042_sync/proj_depth/groundtruth/image_02/0000000525.png 718.856
|
95 |
+
2011_10_03/2011_10_03_drive_0042_sync/image_02/data/0000000538.png 2011_10_03_drive_0042_sync/proj_depth/groundtruth/image_02/0000000538.png 718.856
|
96 |
+
2011_10_03/2011_10_03_drive_0042_sync/image_02/data/0000000648.png 2011_10_03_drive_0042_sync/proj_depth/groundtruth/image_02/0000000648.png 718.856
|
97 |
+
2011_10_03/2011_10_03_drive_0042_sync/image_02/data/0000000776.png 2011_10_03_drive_0042_sync/proj_depth/groundtruth/image_02/0000000776.png 718.856
|
98 |
+
2011_10_03/2011_10_03_drive_0042_sync/image_02/data/0000000779.png 2011_10_03_drive_0042_sync/proj_depth/groundtruth/image_02/0000000779.png 718.856
|
99 |
+
2011_10_03/2011_10_03_drive_0042_sync/image_02/data/0000001087.png 2011_10_03_drive_0042_sync/proj_depth/groundtruth/image_02/0000001087.png 718.856
|
100 |
+
2011_10_03/2011_10_03_drive_0042_sync/image_02/data/0000001107.png 2011_10_03_drive_0042_sync/proj_depth/groundtruth/image_02/0000001107.png 718.856
|
Marigold-main/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
|
Marigold-main/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
|
Marigold-main/data_split/nyu/labeled/filename_list_train_small_100.txt
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
train/bathroom_0007/rgb_0649.png train/bathroom_0007/depth_0649.png train/bathroom_0007/filled_0649.png
|
2 |
+
train/bathroom_0010/rgb_0653.png train/bathroom_0010/depth_0653.png train/bathroom_0010/filled_0653.png
|
3 |
+
train/bathroom_0041/rgb_0719.png train/bathroom_0041/depth_0719.png train/bathroom_0041/filled_0719.png
|
4 |
+
train/bathroom_0045/rgb_0729.png train/bathroom_0045/depth_0729.png train/bathroom_0045/filled_0729.png
|
5 |
+
train/bathroom_0048/rgb_0736.png train/bathroom_0048/depth_0736.png train/bathroom_0048/filled_0736.png
|
6 |
+
train/bathroom_0056/rgb_0505.png train/bathroom_0056/depth_0505.png train/bathroom_0056/filled_0505.png
|
7 |
+
train/bedroom_0004/rgb_0178.png train/bedroom_0004/depth_0178.png train/bedroom_0004/filled_0178.png
|
8 |
+
train/bedroom_0016/rgb_0071.png train/bedroom_0016/depth_0071.png train/bedroom_0016/filled_0071.png
|
9 |
+
train/bedroom_0025/rgb_0910.png train/bedroom_0025/depth_0910.png train/bedroom_0025/filled_0910.png
|
10 |
+
train/bedroom_0026/rgb_0914.png train/bedroom_0026/depth_0914.png train/bedroom_0026/filled_0914.png
|
11 |
+
train/bedroom_0031/rgb_0929.png train/bedroom_0031/depth_0929.png train/bedroom_0031/filled_0929.png
|
12 |
+
train/bedroom_0034/rgb_0939.png train/bedroom_0034/depth_0939.png train/bedroom_0034/filled_0939.png
|
13 |
+
train/bedroom_0040/rgb_0954.png train/bedroom_0040/depth_0954.png train/bedroom_0040/filled_0954.png
|
14 |
+
train/bedroom_0042/rgb_0958.png train/bedroom_0042/depth_0958.png train/bedroom_0042/filled_0958.png
|
15 |
+
train/bedroom_0050/rgb_0978.png train/bedroom_0050/depth_0978.png train/bedroom_0050/filled_0978.png
|
16 |
+
train/bedroom_0051/rgb_0984.png train/bedroom_0051/depth_0984.png train/bedroom_0051/filled_0984.png
|
17 |
+
train/bedroom_0056/rgb_0997.png train/bedroom_0056/depth_0997.png train/bedroom_0056/filled_0997.png
|
18 |
+
train/bedroom_0060/rgb_1008.png train/bedroom_0060/depth_1008.png train/bedroom_0060/filled_1008.png
|
19 |
+
train/bedroom_0067/rgb_1029.png train/bedroom_0067/depth_1029.png train/bedroom_0067/filled_1029.png
|
20 |
+
train/bedroom_0072/rgb_1045.png train/bedroom_0072/depth_1045.png train/bedroom_0072/filled_1045.png
|
21 |
+
train/bedroom_0072/rgb_1046.png train/bedroom_0072/depth_1046.png train/bedroom_0072/filled_1046.png
|
22 |
+
train/bedroom_0079/rgb_1062.png train/bedroom_0079/depth_1062.png train/bedroom_0079/filled_1062.png
|
23 |
+
train/bedroom_0081/rgb_1072.png train/bedroom_0081/depth_1072.png train/bedroom_0081/filled_1072.png
|
24 |
+
train/bedroom_0096/rgb_1112.png train/bedroom_0096/depth_1112.png train/bedroom_0096/filled_1112.png
|
25 |
+
train/bedroom_0118/rgb_1173.png train/bedroom_0118/depth_1173.png train/bedroom_0118/filled_1173.png
|
26 |
+
train/bedroom_0129/rgb_1197.png train/bedroom_0129/depth_1197.png train/bedroom_0129/filled_1197.png
|
27 |
+
train/bedroom_0136/rgb_0527.png train/bedroom_0136/depth_0527.png train/bedroom_0136/filled_0527.png
|
28 |
+
train/bookstore_0000/rgb_0105.png train/bookstore_0000/depth_0105.png train/bookstore_0000/filled_0105.png
|
29 |
+
train/bookstore_0000/rgb_0107.png train/bookstore_0000/depth_0107.png train/bookstore_0000/filled_0107.png
|
30 |
+
train/bookstore_0002/rgb_0101.png train/bookstore_0002/depth_0101.png train/bookstore_0002/filled_0101.png
|
31 |
+
train/bookstore_0002/rgb_0103.png train/bookstore_0002/depth_0103.png train/bookstore_0002/filled_0103.png
|
32 |
+
train/classroom_0010/rgb_0305.png train/classroom_0010/depth_0305.png train/classroom_0010/filled_0305.png
|
33 |
+
train/classroom_0012/rgb_0309.png train/classroom_0012/depth_0309.png train/classroom_0012/filled_0309.png
|
34 |
+
train/conference_room_0001/rgb_0339.png train/conference_room_0001/depth_0339.png train/conference_room_0001/filled_0339.png
|
35 |
+
train/conference_room_0001/rgb_0341.png train/conference_room_0001/depth_0341.png train/conference_room_0001/filled_0341.png
|
36 |
+
train/dining_room_0002/rgb_1346.png train/dining_room_0002/depth_1346.png train/dining_room_0002/filled_1346.png
|
37 |
+
train/dining_room_0008/rgb_1363.png train/dining_room_0008/depth_1363.png train/dining_room_0008/filled_1363.png
|
38 |
+
train/dining_room_0012/rgb_1371.png train/dining_room_0012/depth_1371.png train/dining_room_0012/filled_1371.png
|
39 |
+
train/dining_room_0014/rgb_1377.png train/dining_room_0014/depth_1377.png train/dining_room_0014/filled_1377.png
|
40 |
+
train/dining_room_0015/rgb_1379.png train/dining_room_0015/depth_1379.png train/dining_room_0015/filled_1379.png
|
41 |
+
train/dining_room_0016/rgb_1382.png train/dining_room_0016/depth_1382.png train/dining_room_0016/filled_1382.png
|
42 |
+
train/dining_room_0031/rgb_1425.png train/dining_room_0031/depth_1425.png train/dining_room_0031/filled_1425.png
|
43 |
+
train/dining_room_0031/rgb_1426.png train/dining_room_0031/depth_1426.png train/dining_room_0031/filled_1426.png
|
44 |
+
train/dining_room_0033/rgb_1436.png train/dining_room_0033/depth_1436.png train/dining_room_0033/filled_1436.png
|
45 |
+
train/dining_room_0037/rgb_0548.png train/dining_room_0037/depth_0548.png train/dining_room_0037/filled_0548.png
|
46 |
+
train/furniture_store_0001/rgb_0224.png train/furniture_store_0001/depth_0224.png train/furniture_store_0001/filled_0224.png
|
47 |
+
train/furniture_store_0001/rgb_0237.png train/furniture_store_0001/depth_0237.png train/furniture_store_0001/filled_0237.png
|
48 |
+
train/furniture_store_0002/rgb_0249.png train/furniture_store_0002/depth_0249.png train/furniture_store_0002/filled_0249.png
|
49 |
+
train/home_office_0005/rgb_0368.png train/home_office_0005/depth_0368.png train/home_office_0005/filled_0368.png
|
50 |
+
train/home_office_0006/rgb_0374.png train/home_office_0006/depth_0374.png train/home_office_0006/filled_0374.png
|
51 |
+
train/home_office_0008/rgb_0380.png train/home_office_0008/depth_0380.png train/home_office_0008/filled_0380.png
|
52 |
+
train/home_office_0013/rgb_0554.png train/home_office_0013/depth_0554.png train/home_office_0013/filled_0554.png
|
53 |
+
train/kitchen_0010/rgb_0138.png train/kitchen_0010/depth_0138.png train/kitchen_0010/filled_0138.png
|
54 |
+
train/kitchen_0019/rgb_0750.png train/kitchen_0019/depth_0750.png train/kitchen_0019/filled_0750.png
|
55 |
+
train/kitchen_0019/rgb_0757.png train/kitchen_0019/depth_0757.png train/kitchen_0019/filled_0757.png
|
56 |
+
train/kitchen_0028/rgb_0788.png train/kitchen_0028/depth_0788.png train/kitchen_0028/filled_0788.png
|
57 |
+
train/kitchen_0028/rgb_0793.png train/kitchen_0028/depth_0793.png train/kitchen_0028/filled_0793.png
|
58 |
+
train/kitchen_0029/rgb_0799.png train/kitchen_0029/depth_0799.png train/kitchen_0029/filled_0799.png
|
59 |
+
train/kitchen_0033/rgb_0815.png train/kitchen_0033/depth_0815.png train/kitchen_0033/filled_0815.png
|
60 |
+
train/kitchen_0033/rgb_0816.png train/kitchen_0033/depth_0816.png train/kitchen_0033/filled_0816.png
|
61 |
+
train/kitchen_0037/rgb_0832.png train/kitchen_0037/depth_0832.png train/kitchen_0037/filled_0832.png
|
62 |
+
train/kitchen_0041/rgb_0849.png train/kitchen_0041/depth_0849.png train/kitchen_0041/filled_0849.png
|
63 |
+
train/kitchen_0047/rgb_0875.png train/kitchen_0047/depth_0875.png train/kitchen_0047/filled_0875.png
|
64 |
+
train/kitchen_0050/rgb_0887.png train/kitchen_0050/depth_0887.png train/kitchen_0050/filled_0887.png
|
65 |
+
train/kitchen_0051/rgb_0892.png train/kitchen_0051/depth_0892.png train/kitchen_0051/filled_0892.png
|
66 |
+
train/kitchen_0051/rgb_0893.png train/kitchen_0051/depth_0893.png train/kitchen_0051/filled_0893.png
|
67 |
+
train/kitchen_0052/rgb_0899.png train/kitchen_0052/depth_0899.png train/kitchen_0052/filled_0899.png
|
68 |
+
train/kitchen_0059/rgb_0573.png train/kitchen_0059/depth_0573.png train/kitchen_0059/filled_0573.png
|
69 |
+
train/living_room_0000/rgb_0050.png train/living_room_0000/depth_0050.png train/living_room_0000/filled_0050.png
|
70 |
+
train/living_room_0010/rgb_0156.png train/living_room_0010/depth_0156.png train/living_room_0010/filled_0156.png
|
71 |
+
train/living_room_0010/rgb_0158.png train/living_room_0010/depth_0158.png train/living_room_0010/filled_0158.png
|
72 |
+
train/living_room_0010/rgb_0159.png train/living_room_0010/depth_0159.png train/living_room_0010/filled_0159.png
|
73 |
+
train/living_room_0011/rgb_0162.png train/living_room_0011/depth_0162.png train/living_room_0011/filled_0162.png
|
74 |
+
train/living_room_0019/rgb_0258.png train/living_room_0019/depth_0258.png train/living_room_0019/filled_0258.png
|
75 |
+
train/living_room_0042/rgb_1251.png train/living_room_0042/depth_1251.png train/living_room_0042/filled_1251.png
|
76 |
+
train/living_room_0046/rgb_1268.png train/living_room_0046/depth_1268.png train/living_room_0046/filled_1268.png
|
77 |
+
train/living_room_0047/rgb_1272.png train/living_room_0047/depth_1272.png train/living_room_0047/filled_1272.png
|
78 |
+
train/living_room_0058/rgb_1301.png train/living_room_0058/depth_1301.png train/living_room_0058/filled_1301.png
|
79 |
+
train/living_room_0062/rgb_1310.png train/living_room_0062/depth_1310.png train/living_room_0062/filled_1310.png
|
80 |
+
train/living_room_0063/rgb_1313.png train/living_room_0063/depth_1313.png train/living_room_0063/filled_1313.png
|
81 |
+
train/living_room_0083/rgb_0588.png train/living_room_0083/depth_0588.png train/living_room_0083/filled_0588.png
|
82 |
+
train/living_room_0086/rgb_0601.png train/living_room_0086/depth_0601.png train/living_room_0086/filled_0601.png
|
83 |
+
train/office_0003/rgb_0004.png train/office_0003/depth_0004.png train/office_0003/filled_0004.png
|
84 |
+
train/office_0023/rgb_0623.png train/office_0023/depth_0623.png train/office_0023/filled_0623.png
|
85 |
+
train/office_0024/rgb_0627.png train/office_0024/depth_0627.png train/office_0024/filled_0627.png
|
86 |
+
train/office_kitchen_0003/rgb_0415.png train/office_kitchen_0003/depth_0415.png train/office_kitchen_0003/filled_0415.png
|
87 |
+
train/playroom_0002/rgb_0418.png train/playroom_0002/depth_0418.png train/playroom_0002/filled_0418.png
|
88 |
+
train/playroom_0003/rgb_0423.png train/playroom_0003/depth_0423.png train/playroom_0003/filled_0423.png
|
89 |
+
train/playroom_0003/rgb_0424.png train/playroom_0003/depth_0424.png train/playroom_0003/filled_0424.png
|
90 |
+
train/playroom_0003/rgb_0425.png train/playroom_0003/depth_0425.png train/playroom_0003/filled_0425.png
|
91 |
+
train/playroom_0004/rgb_0426.png train/playroom_0004/depth_0426.png train/playroom_0004/filled_0426.png
|
92 |
+
train/printer_room_0001/rgb_0451.png train/printer_room_0001/depth_0451.png train/printer_room_0001/filled_0451.png
|
93 |
+
train/reception_room_0001/rgb_0456.png train/reception_room_0001/depth_0456.png train/reception_room_0001/filled_0456.png
|
94 |
+
train/reception_room_0002/rgb_0459.png train/reception_room_0002/depth_0459.png train/reception_room_0002/filled_0459.png
|
95 |
+
train/reception_room_0004/rgb_0468.png train/reception_room_0004/depth_0468.png train/reception_room_0004/filled_0468.png
|
96 |
+
train/student_lounge_0001/rgb_0641.png train/student_lounge_0001/depth_0641.png train/student_lounge_0001/filled_0641.png
|
97 |
+
train/study_0003/rgb_0478.png train/study_0003/depth_0478.png train/study_0003/filled_0478.png
|
98 |
+
train/study_0005/rgb_0485.png train/study_0005/depth_0485.png train/study_0005/filled_0485.png
|
99 |
+
train/study_0008/rgb_0646.png train/study_0008/depth_0646.png train/study_0008/filled_0646.png
|
100 |
+
train/study_room_0004/rgb_0274.png train/study_room_0004/depth_0274.png train/study_room_0004/filled_0274.png
|
Marigold-main/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
|
Marigold-main/data_split/vkitti/vkitti_train.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/data_split/vkitti/vkitti_val.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Marigold-main/doc/badges/badge-colab.svg
ADDED
Marigold-main/doc/badges/badge-docker.svg
ADDED
Marigold-main/doc/badges/badge-website.svg
ADDED
Marigold-main/doc/teaser_collage_transparant.png
ADDED
Git LFS Details
|
Marigold-main/environment.yaml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: marigold
|
2 |
+
channels:
|
3 |
+
- conda-forge
|
4 |
+
- nvidia
|
5 |
+
- pytorch
|
6 |
+
dependencies:
|
7 |
+
- accelerate>=0.22.0
|
8 |
+
- diffusers>=0.25.0
|
9 |
+
- matplotlib>=3.8.2
|
10 |
+
- scipy>=1.11.4
|
11 |
+
- python=3.10.12
|
12 |
+
- pytorch=2.2.1
|
13 |
+
- pytorch-cuda=11.7
|
14 |
+
- torchvision=0.15.2
|
15 |
+
- pip:
|
16 |
+
- transformers==4.32.1
|
Marigold-main/eval.py
ADDED
@@ -0,0 +1,248 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Last modified: 2024-03-11
|
2 |
+
# Copyright 2023 Bingxin Ke, ETH Zurich. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
# --------------------------------------------------------------------------
|
16 |
+
# If you find this code useful, we kindly ask you to cite our paper in your work.
|
17 |
+
# Please find bibtex at: https://github.com/prs-eth/Marigold#-citation
|
18 |
+
# More information about the method can be found at https://marigoldmonodepth.github.io
|
19 |
+
# --------------------------------------------------------------------------
|
20 |
+
|
21 |
+
import argparse
|
22 |
+
import logging
|
23 |
+
import os
|
24 |
+
|
25 |
+
import numpy as np
|
26 |
+
import torch
|
27 |
+
from omegaconf import OmegaConf
|
28 |
+
from tabulate import tabulate
|
29 |
+
from torch.utils.data import DataLoader
|
30 |
+
from tqdm.auto import tqdm
|
31 |
+
|
32 |
+
from src.dataset import (
|
33 |
+
BaseDepthDataset,
|
34 |
+
DatasetMode,
|
35 |
+
get_dataset,
|
36 |
+
get_pred_name,
|
37 |
+
)
|
38 |
+
from src.util import metric
|
39 |
+
from src.util.alignment import (
|
40 |
+
align_depth_least_square,
|
41 |
+
depth2disparity,
|
42 |
+
disparity2depth,
|
43 |
+
)
|
44 |
+
from src.util.metric import MetricTracker
|
45 |
+
|
46 |
+
eval_metrics = [
|
47 |
+
"abs_relative_difference",
|
48 |
+
"squared_relative_difference",
|
49 |
+
"rmse_linear",
|
50 |
+
"rmse_log",
|
51 |
+
"log10",
|
52 |
+
"delta1_acc",
|
53 |
+
"delta2_acc",
|
54 |
+
"delta3_acc",
|
55 |
+
"i_rmse",
|
56 |
+
"silog_rmse",
|
57 |
+
]
|
58 |
+
|
59 |
+
if "__main__" == __name__:
|
60 |
+
parser = argparse.ArgumentParser()
|
61 |
+
# input
|
62 |
+
parser.add_argument(
|
63 |
+
"--prediction_dir",
|
64 |
+
type=str,
|
65 |
+
required=True,
|
66 |
+
help="Directory of depth predictions",
|
67 |
+
)
|
68 |
+
parser.add_argument(
|
69 |
+
"--output_dir", type=str, required=True, help="Output directory."
|
70 |
+
)
|
71 |
+
|
72 |
+
# dataset setting
|
73 |
+
parser.add_argument(
|
74 |
+
"--dataset_config",
|
75 |
+
type=str,
|
76 |
+
required=True,
|
77 |
+
help="Path to config file of evaluation dataset.",
|
78 |
+
)
|
79 |
+
parser.add_argument(
|
80 |
+
"--base_data_dir",
|
81 |
+
type=str,
|
82 |
+
required=True,
|
83 |
+
help="Path to base data directory.",
|
84 |
+
)
|
85 |
+
|
86 |
+
# LS depth alignment
|
87 |
+
parser.add_argument(
|
88 |
+
"--alignment",
|
89 |
+
choices=[None, "least_square", "least_square_disparity"],
|
90 |
+
default=None,
|
91 |
+
help="Method to estimate scale and shift between predictions and ground truth.",
|
92 |
+
)
|
93 |
+
parser.add_argument(
|
94 |
+
"--alignment_max_res",
|
95 |
+
type=int,
|
96 |
+
default=None,
|
97 |
+
help="Max operating resolution used for LS alignment",
|
98 |
+
)
|
99 |
+
|
100 |
+
parser.add_argument("--no_cuda", action="store_true", help="Run without cuda")
|
101 |
+
|
102 |
+
args = parser.parse_args()
|
103 |
+
|
104 |
+
prediction_dir = args.prediction_dir
|
105 |
+
output_dir = args.output_dir
|
106 |
+
|
107 |
+
dataset_config = args.dataset_config
|
108 |
+
base_data_dir = args.base_data_dir
|
109 |
+
|
110 |
+
alignment = args.alignment
|
111 |
+
alignment_max_res = args.alignment_max_res
|
112 |
+
|
113 |
+
no_cuda = args.no_cuda
|
114 |
+
pred_suffix = ".npy"
|
115 |
+
|
116 |
+
os.makedirs(output_dir, exist_ok=True)
|
117 |
+
|
118 |
+
# -------------------- Device --------------------
|
119 |
+
cuda_avail = torch.cuda.is_available() and not no_cuda
|
120 |
+
device = torch.device("cuda" if cuda_avail else "cpu")
|
121 |
+
logging.info(f"Device: {device}")
|
122 |
+
|
123 |
+
# -------------------- Data --------------------
|
124 |
+
cfg_data = OmegaConf.load(dataset_config)
|
125 |
+
|
126 |
+
dataset: BaseDepthDataset = get_dataset(
|
127 |
+
cfg_data, base_data_dir=base_data_dir, mode=DatasetMode.EVAL
|
128 |
+
)
|
129 |
+
|
130 |
+
dataloader = DataLoader(dataset, batch_size=1, num_workers=0)
|
131 |
+
|
132 |
+
# -------------------- Eval metrics --------------------
|
133 |
+
metric_funcs = [getattr(metric, _met) for _met in eval_metrics]
|
134 |
+
|
135 |
+
metric_tracker = MetricTracker(*[m.__name__ for m in metric_funcs])
|
136 |
+
metric_tracker.reset()
|
137 |
+
|
138 |
+
# -------------------- Per-sample metric file head --------------------
|
139 |
+
per_sample_filename = os.path.join(output_dir, "per_sample_metrics.csv")
|
140 |
+
# write title
|
141 |
+
with open(per_sample_filename, "w+") as f:
|
142 |
+
f.write("filename,")
|
143 |
+
f.write(",".join([m.__name__ for m in metric_funcs]))
|
144 |
+
f.write("\n")
|
145 |
+
|
146 |
+
# -------------------- Evaluate --------------------
|
147 |
+
for data in tqdm(dataloader, desc="Evaluating"):
|
148 |
+
# GT data
|
149 |
+
depth_raw_ts = data["depth_raw_linear"].squeeze()
|
150 |
+
valid_mask_ts = data["valid_mask_raw"].squeeze()
|
151 |
+
rgb_name = data["rgb_relative_path"][0]
|
152 |
+
|
153 |
+
depth_raw = depth_raw_ts.numpy()
|
154 |
+
valid_mask = valid_mask_ts.numpy()
|
155 |
+
|
156 |
+
depth_raw_ts = depth_raw_ts.to(device)
|
157 |
+
valid_mask_ts = valid_mask_ts.to(device)
|
158 |
+
|
159 |
+
# Load predictions
|
160 |
+
rgb_basename = os.path.basename(rgb_name)
|
161 |
+
pred_basename = get_pred_name(
|
162 |
+
rgb_basename, dataset.name_mode, suffix=pred_suffix
|
163 |
+
)
|
164 |
+
pred_name = os.path.join(os.path.dirname(rgb_name), pred_basename)
|
165 |
+
pred_path = os.path.join(prediction_dir, pred_name)
|
166 |
+
depth_pred = np.load(pred_path)
|
167 |
+
|
168 |
+
if not os.path.exists(pred_path):
|
169 |
+
logging.warn(f"Can't find prediction: {pred_path}")
|
170 |
+
continue
|
171 |
+
|
172 |
+
# Align with GT using least square
|
173 |
+
if "least_square" == alignment:
|
174 |
+
depth_pred, scale, shift = align_depth_least_square(
|
175 |
+
gt_arr=depth_raw,
|
176 |
+
pred_arr=depth_pred,
|
177 |
+
valid_mask_arr=valid_mask,
|
178 |
+
return_scale_shift=True,
|
179 |
+
max_resolution=alignment_max_res,
|
180 |
+
)
|
181 |
+
elif "least_square_disparity" == alignment:
|
182 |
+
# convert GT depth -> GT disparity
|
183 |
+
gt_disparity, gt_non_neg_mask = depth2disparity(
|
184 |
+
depth=depth_raw, return_mask=True
|
185 |
+
)
|
186 |
+
# LS alignment in disparity space
|
187 |
+
pred_non_neg_mask = depth_pred > 0
|
188 |
+
valid_nonnegative_mask = valid_mask & gt_non_neg_mask & pred_non_neg_mask
|
189 |
+
|
190 |
+
disparity_pred, scale, shift = align_depth_least_square(
|
191 |
+
gt_arr=gt_disparity,
|
192 |
+
pred_arr=depth_pred,
|
193 |
+
valid_mask_arr=valid_nonnegative_mask,
|
194 |
+
return_scale_shift=True,
|
195 |
+
max_resolution=alignment_max_res,
|
196 |
+
)
|
197 |
+
# convert to depth
|
198 |
+
disparity_pred = np.clip(
|
199 |
+
disparity_pred, a_min=1e-3, a_max=None
|
200 |
+
) # avoid 0 disparity
|
201 |
+
depth_pred = disparity2depth(disparity_pred)
|
202 |
+
|
203 |
+
# Clip to dataset min max
|
204 |
+
depth_pred = np.clip(
|
205 |
+
depth_pred, a_min=dataset.min_depth, a_max=dataset.max_depth
|
206 |
+
)
|
207 |
+
|
208 |
+
# clip to d > 0 for evaluation
|
209 |
+
depth_pred = np.clip(depth_pred, a_min=1e-6, a_max=None)
|
210 |
+
|
211 |
+
# Evaluate (using CUDA if available)
|
212 |
+
sample_metric = []
|
213 |
+
depth_pred_ts = torch.from_numpy(depth_pred).to(device)
|
214 |
+
|
215 |
+
for met_func in metric_funcs:
|
216 |
+
_metric_name = met_func.__name__
|
217 |
+
_metric = met_func(depth_pred_ts, depth_raw_ts, valid_mask_ts).item()
|
218 |
+
sample_metric.append(_metric.__str__())
|
219 |
+
metric_tracker.update(_metric_name, _metric)
|
220 |
+
|
221 |
+
# Save per-sample metric
|
222 |
+
with open(per_sample_filename, "a+") as f:
|
223 |
+
f.write(pred_name + ",")
|
224 |
+
f.write(",".join(sample_metric))
|
225 |
+
f.write("\n")
|
226 |
+
|
227 |
+
# -------------------- Save metrics to file --------------------
|
228 |
+
eval_text = f"Evaluation metrics:\n\
|
229 |
+
of predictions: {prediction_dir}\n\
|
230 |
+
on dataset: {dataset.disp_name}\n\
|
231 |
+
with samples in: {dataset.filename_ls_path}\n"
|
232 |
+
|
233 |
+
eval_text += f"min_depth = {dataset.min_depth}\n"
|
234 |
+
eval_text += f"max_depth = {dataset.max_depth}\n"
|
235 |
+
|
236 |
+
eval_text += tabulate(
|
237 |
+
[metric_tracker.result().keys(), metric_tracker.result().values()]
|
238 |
+
)
|
239 |
+
|
240 |
+
metrics_filename = "eval_metrics"
|
241 |
+
if alignment:
|
242 |
+
metrics_filename += f"-{alignment}"
|
243 |
+
metrics_filename += ".txt"
|
244 |
+
|
245 |
+
_save_to = os.path.join(output_dir, metrics_filename)
|
246 |
+
with open(_save_to, "w+") as f:
|
247 |
+
f.write(eval_text)
|
248 |
+
logging.info(f"Evaluation metrics saved to {_save_to}")
|
Marigold-main/infer.py
ADDED
@@ -0,0 +1,258 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Last modified: 2024-05-24
|
2 |
+
# Copyright 2023 Bingxin Ke, ETH Zurich. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
# --------------------------------------------------------------------------
|
16 |
+
# If you find this code useful, we kindly ask you to cite our paper in your work.
|
17 |
+
# Please find bibtex at: https://github.com/prs-eth/Marigold#-citation
|
18 |
+
# More information about the method can be found at https://marigoldmonodepth.github.io
|
19 |
+
# --------------------------------------------------------------------------
|
20 |
+
|
21 |
+
|
22 |
+
import argparse
|
23 |
+
import logging
|
24 |
+
import os
|
25 |
+
|
26 |
+
import numpy as np
|
27 |
+
import torch
|
28 |
+
from omegaconf import OmegaConf
|
29 |
+
from PIL import Image
|
30 |
+
from torch.utils.data import DataLoader
|
31 |
+
from tqdm.auto import tqdm
|
32 |
+
|
33 |
+
from marigold import MarigoldPipeline
|
34 |
+
from src.util.seeding import seed_all
|
35 |
+
from src.dataset import (
|
36 |
+
BaseDepthDataset,
|
37 |
+
DatasetMode,
|
38 |
+
get_dataset,
|
39 |
+
get_pred_name,
|
40 |
+
)
|
41 |
+
|
42 |
+
if "__main__" == __name__:
|
43 |
+
logging.basicConfig(level=logging.INFO)
|
44 |
+
|
45 |
+
# -------------------- Arguments --------------------
|
46 |
+
parser = argparse.ArgumentParser(
|
47 |
+
description="Run single-image depth estimation using Marigold."
|
48 |
+
)
|
49 |
+
parser.add_argument(
|
50 |
+
"--checkpoint",
|
51 |
+
type=str,
|
52 |
+
default="prs-eth/marigold-v1-0",
|
53 |
+
help="Checkpoint path or hub name.",
|
54 |
+
)
|
55 |
+
|
56 |
+
# dataset setting
|
57 |
+
parser.add_argument(
|
58 |
+
"--dataset_config",
|
59 |
+
type=str,
|
60 |
+
required=True,
|
61 |
+
help="Path to config file of evaluation dataset.",
|
62 |
+
)
|
63 |
+
parser.add_argument(
|
64 |
+
"--base_data_dir",
|
65 |
+
type=str,
|
66 |
+
required=True,
|
67 |
+
help="Path to base data directory.",
|
68 |
+
)
|
69 |
+
|
70 |
+
parser.add_argument(
|
71 |
+
"--output_dir", type=str, required=True, help="Output directory."
|
72 |
+
)
|
73 |
+
|
74 |
+
# inference setting
|
75 |
+
parser.add_argument(
|
76 |
+
"--denoise_steps",
|
77 |
+
type=int,
|
78 |
+
default=50, # quantitative evaluation uses 50 steps
|
79 |
+
help="Diffusion denoising steps, more steps results in higher accuracy but slower inference speed.",
|
80 |
+
)
|
81 |
+
parser.add_argument(
|
82 |
+
"--ensemble_size",
|
83 |
+
type=int,
|
84 |
+
default=10,
|
85 |
+
help="Number of predictions to be ensembled, more inference gives better results but runs slower.",
|
86 |
+
)
|
87 |
+
parser.add_argument(
|
88 |
+
"--half_precision",
|
89 |
+
"--fp16",
|
90 |
+
action="store_true",
|
91 |
+
help="Run with half-precision (16-bit float), might lead to suboptimal result.",
|
92 |
+
)
|
93 |
+
|
94 |
+
# resolution setting
|
95 |
+
parser.add_argument(
|
96 |
+
"--processing_res",
|
97 |
+
type=int,
|
98 |
+
default=0,
|
99 |
+
help="Maximum resolution of processing. 0 for using input image resolution. Default: 0.",
|
100 |
+
)
|
101 |
+
parser.add_argument(
|
102 |
+
"--output_processing_res",
|
103 |
+
action="store_true",
|
104 |
+
help="When input is resized, out put depth at resized operating resolution. Default: False.",
|
105 |
+
)
|
106 |
+
parser.add_argument(
|
107 |
+
"--resample_method",
|
108 |
+
type=str,
|
109 |
+
default="bilinear",
|
110 |
+
help="Resampling method used to resize images. This can be one of 'bilinear' or 'nearest'.",
|
111 |
+
)
|
112 |
+
|
113 |
+
parser.add_argument("--seed", type=int, default=None, help="Random seed.")
|
114 |
+
|
115 |
+
args = parser.parse_args()
|
116 |
+
|
117 |
+
checkpoint_path = args.checkpoint
|
118 |
+
dataset_config = args.dataset_config
|
119 |
+
base_data_dir = args.base_data_dir
|
120 |
+
output_dir = args.output_dir
|
121 |
+
|
122 |
+
denoise_steps = args.denoise_steps
|
123 |
+
ensemble_size = args.ensemble_size
|
124 |
+
if ensemble_size > 15:
|
125 |
+
logging.warning("Running with large ensemble size will be slow.")
|
126 |
+
half_precision = args.half_precision
|
127 |
+
|
128 |
+
processing_res = args.processing_res
|
129 |
+
match_input_res = not args.output_processing_res
|
130 |
+
if 0 == processing_res and match_input_res is False:
|
131 |
+
logging.warning(
|
132 |
+
"Processing at native resolution without resizing output might NOT lead to exactly the same resolution, due to the padding and pooling properties of conv layers."
|
133 |
+
)
|
134 |
+
resample_method = args.resample_method
|
135 |
+
|
136 |
+
seed = args.seed
|
137 |
+
|
138 |
+
print(f"arguments: {args}")
|
139 |
+
|
140 |
+
# -------------------- Preparation --------------------
|
141 |
+
# Print out config
|
142 |
+
logging.info(
|
143 |
+
f"Inference settings: checkpoint = `{checkpoint_path}`, "
|
144 |
+
f"with denoise_steps = {denoise_steps}, ensemble_size = {ensemble_size}, "
|
145 |
+
f"processing resolution = {processing_res}, seed = {seed}; "
|
146 |
+
f"dataset config = `{dataset_config}`."
|
147 |
+
)
|
148 |
+
|
149 |
+
# Random seed
|
150 |
+
if seed is None:
|
151 |
+
import time
|
152 |
+
|
153 |
+
seed = int(time.time())
|
154 |
+
seed_all(seed)
|
155 |
+
|
156 |
+
def check_directory(directory):
|
157 |
+
if os.path.exists(directory):
|
158 |
+
response = (
|
159 |
+
input(
|
160 |
+
f"The directory '{directory}' already exists. Are you sure to continue? (y/n): "
|
161 |
+
)
|
162 |
+
.strip()
|
163 |
+
.lower()
|
164 |
+
)
|
165 |
+
if "y" == response:
|
166 |
+
pass
|
167 |
+
elif "n" == response:
|
168 |
+
print("Exiting...")
|
169 |
+
exit()
|
170 |
+
else:
|
171 |
+
print("Invalid input. Please enter 'y' (for Yes) or 'n' (for No).")
|
172 |
+
check_directory(directory) # Recursive call to ask again
|
173 |
+
|
174 |
+
check_directory(output_dir)
|
175 |
+
os.makedirs(output_dir, exist_ok=True)
|
176 |
+
logging.info(f"output dir = {output_dir}")
|
177 |
+
|
178 |
+
# -------------------- Device --------------------
|
179 |
+
if torch.cuda.is_available():
|
180 |
+
device = torch.device("cuda")
|
181 |
+
else:
|
182 |
+
device = torch.device("cpu")
|
183 |
+
logging.warning("CUDA is not available. Running on CPU will be slow.")
|
184 |
+
logging.info(f"device = {device}")
|
185 |
+
|
186 |
+
# -------------------- Data --------------------
|
187 |
+
cfg_data = OmegaConf.load(dataset_config)
|
188 |
+
|
189 |
+
dataset: BaseDepthDataset = get_dataset(
|
190 |
+
cfg_data, base_data_dir=base_data_dir, mode=DatasetMode.RGB_ONLY
|
191 |
+
)
|
192 |
+
|
193 |
+
dataloader = DataLoader(dataset, batch_size=1, num_workers=0)
|
194 |
+
|
195 |
+
# -------------------- Model --------------------
|
196 |
+
if half_precision:
|
197 |
+
dtype = torch.float16
|
198 |
+
variant = "fp16"
|
199 |
+
logging.warning(
|
200 |
+
f"Running with half precision ({dtype}), might lead to suboptimal result."
|
201 |
+
)
|
202 |
+
else:
|
203 |
+
dtype = torch.float32
|
204 |
+
variant = None
|
205 |
+
|
206 |
+
pipe = MarigoldPipeline.from_pretrained(
|
207 |
+
checkpoint_path, variant=variant, torch_dtype=dtype
|
208 |
+
)
|
209 |
+
|
210 |
+
try:
|
211 |
+
pipe.enable_xformers_memory_efficient_attention()
|
212 |
+
except ImportError:
|
213 |
+
logging.debug("run without xformers")
|
214 |
+
|
215 |
+
pipe = pipe.to(device)
|
216 |
+
logging.info(
|
217 |
+
f"scale_invariant: {pipe.scale_invariant}, shift_invariant: {pipe.shift_invariant}"
|
218 |
+
)
|
219 |
+
|
220 |
+
# -------------------- Inference and saving --------------------
|
221 |
+
with torch.no_grad():
|
222 |
+
for batch in tqdm(
|
223 |
+
dataloader, desc=f"Inferencing on {dataset.disp_name}", leave=True
|
224 |
+
):
|
225 |
+
# Read input image
|
226 |
+
rgb_int = batch["rgb_int"].squeeze().numpy().astype(np.uint8) # [3, H, W]
|
227 |
+
rgb_int = np.moveaxis(rgb_int, 0, -1) # [H, W, 3]
|
228 |
+
input_image = Image.fromarray(rgb_int)
|
229 |
+
|
230 |
+
# Predict depth
|
231 |
+
pipe_out = pipe(
|
232 |
+
input_image,
|
233 |
+
denoising_steps=denoise_steps,
|
234 |
+
ensemble_size=ensemble_size,
|
235 |
+
processing_res=processing_res,
|
236 |
+
match_input_res=match_input_res,
|
237 |
+
batch_size=0,
|
238 |
+
color_map=None,
|
239 |
+
show_progress_bar=False,
|
240 |
+
resample_method=resample_method,
|
241 |
+
)
|
242 |
+
|
243 |
+
depth_pred: np.ndarray = pipe_out.depth_np
|
244 |
+
|
245 |
+
# Save predictions
|
246 |
+
rgb_filename = batch["rgb_relative_path"][0]
|
247 |
+
rgb_basename = os.path.basename(rgb_filename)
|
248 |
+
scene_dir = os.path.join(output_dir, os.path.dirname(rgb_filename))
|
249 |
+
if not os.path.exists(scene_dir):
|
250 |
+
os.makedirs(scene_dir)
|
251 |
+
pred_basename = get_pred_name(
|
252 |
+
rgb_basename, dataset.name_mode, suffix=".npy"
|
253 |
+
)
|
254 |
+
save_to = os.path.join(scene_dir, pred_basename)
|
255 |
+
if os.path.exists(save_to):
|
256 |
+
logging.warning(f"Existing file: '{save_to}' will be overwritten")
|
257 |
+
|
258 |
+
np.save(save_to, depth_pred)
|