Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Industrial Plenoptic Dataset
|
2 |
+
|
3 |
+
To download the data and extract it into BOP format simply execute:
|
4 |
+
```
|
5 |
+
export SRC=https://huggingface.co/datasets/bop-benchmark/
|
6 |
+
wget $SRC/ipd/resolve/main/ipd_base.zip # Base archive with camera parameters, etc.
|
7 |
+
wget $SRC/ipd/resolve/main/ipd_models.zip # 3D object models.
|
8 |
+
wget $SRC/ipd/resolve/main/ipd_test_all.zip # All test images part 1
|
9 |
+
wget $SRC/ipd/resolve/main/ipd_test_all.z01 # All test images part 2
|
10 |
+
wget $SRC/ipd/resolve/main/ipd_train_pbr.zip # PBR training images
|
11 |
+
|
12 |
+
7z x ipd_base.zip # Contains folder "ipd".
|
13 |
+
7z x ipd_models.zip -oipd # Unpacks to "ipd".
|
14 |
+
7z x ipd_test_all.zip -oipd # Unpacks to "ipd".
|
15 |
+
7z x ipd_test_all.zip -oipd # Unpacks to "ipd".
|
16 |
+
7z x ipd_train_pbr.zip -oipd # Unpacks to "ipd".
|
17 |
+
```
|