chrischoy commited on
Commit
a928e67
·
verified ·
1 Parent(s): badd012

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +107 -0
README.md ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: research-only
4
+ license_link: https://3dmatch.cs.princeton.edu/
5
+ task_categories:
6
+ - other
7
+ tags:
8
+ - point-cloud
9
+ - 3d-registration
10
+ - 3dmatch
11
+ - geometric-features
12
+ - fcgf
13
+ - correspondence
14
+ pretty_name: FCGF Preprocessed 3DMatch
15
+ size_categories:
16
+ - 1K<n<10K
17
+ ---
18
+
19
+ # FCGF Preprocessed 3DMatch Dataset
20
+
21
+ Preprocessed **3DMatch** training data used by
22
+ [**FCGF: Fully Convolutional Geometric Features (ICCV 2019)**](https://github.com/chrischoy/FCGF).
23
+
24
+ Each `.npz` file stores a fragment point cloud, and the accompanying `.txt` files list
25
+ overlapping fragment pairs (with their overlap ratio) used to sample positive
26
+ correspondences during training. This is the exact data produced by
27
+ [`scripts/download_datasets.sh`](https://github.com/chrischoy/FCGF/blob/master/scripts/download_datasets.sh)
28
+ in the FCGF repository.
29
+
30
+ ## Contents
31
+
32
+ ```
33
+ threedmatch/
34
+ ├── <scene>@seq-XX_YYY.npz # 2189 fragment point clouds
35
+ └── <scene>@seq-XX-<overlap>.txt # 401 overlapping-pair lists
36
+ ```
37
+
38
+ - **2,590** files total (2,189 `.npz` + 401 `.txt`), ~8.2 GB.
39
+ - Scenes are drawn from the standard 3DMatch compilation: `7-scenes`, `sun3d`,
40
+ `bundlefusion`, `rgbd-scenes-v2`, `analysis-by-synthesis`, etc.
41
+
42
+ ## Usage
43
+
44
+ Download with the Hugging Face CLI:
45
+
46
+ ```bash
47
+ hf download chrischoy/FCGF-3DMatch --repo-type dataset --local-dir ./data
48
+ # data/threedmatch/*.npz
49
+ ```
50
+
51
+ or from Python:
52
+
53
+ ```python
54
+ from huggingface_hub import snapshot_download
55
+
56
+ snapshot_download(
57
+ repo_id="chrischoy/FCGF-3DMatch",
58
+ repo_type="dataset",
59
+ local_dir="./data",
60
+ )
61
+ ```
62
+
63
+ Then train FCGF:
64
+
65
+ ```bash
66
+ python train.py --threed_match_dir ./data/threedmatch/
67
+ ```
68
+
69
+ A single fragment file can be inspected with NumPy:
70
+
71
+ ```python
72
+ import numpy as np
73
+
74
+ data = np.load("data/threedmatch/7-scenes-chess@seq-02_000.npz")
75
+ print(data.files) # e.g. ['pcd', ...]
76
+ xyz = data["pcd"] # (N, 3) point coordinates
77
+ ```
78
+
79
+ ## License & attribution
80
+
81
+ This is a redistribution of preprocessed data derived from the
82
+ [3DMatch benchmark](http://3dmatch.cs.princeton.edu/), which itself aggregates
83
+ several RGB-D datasets (SUN3D, 7-Scenes, BundleFusion, RGB-D Scenes v2, and others).
84
+ It is provided **for non-commercial research purposes only**. Please also comply with
85
+ the licenses of the original constituent datasets and cite 3DMatch. The FCGF source
86
+ code is released separately under the MIT License.
87
+
88
+ ## Citation
89
+
90
+ If you use this data, please cite FCGF and 3DMatch:
91
+
92
+ ```bibtex
93
+ @inproceedings{FCGF2019,
94
+ author = {Christopher Choy and Jaesik Park and Vladlen Koltun},
95
+ title = {Fully Convolutional Geometric Features},
96
+ booktitle = {ICCV},
97
+ year = {2019},
98
+ }
99
+
100
+ @inproceedings{zeng20163dmatch,
101
+ author = {Andy Zeng and Shuran Song and Matthias Nie{\ss}ner and
102
+ Matthew Fisher and Jianxiong Xiao and Thomas Funkhouser},
103
+ title = {3DMatch: Learning Local Geometric Descriptors from RGB-D Reconstructions},
104
+ booktitle = {CVPR},
105
+ year = {2017},
106
+ }
107
+ ```