Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,31 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
Fastmap evaluation suite.
|
5 |
+
|
6 |
+
## Images
|
7 |
+
We performed some light image curation
|
8 |
+
|
9 |
+
## Databases
|
10 |
+
Unless specified below, all databases `.db` files are produced with
|
11 |
+
```
|
12 |
+
colmap feature_extractor --ImageReader.single_camera 1 --ImageReader.camera_model SIMPLE_RADIAL --image_path {imgdir} --database_path {db_fname}
|
13 |
+
colmap exhaustive_matcher --database_path {db_fname}
|
14 |
+
```
|
15 |
+
|
16 |
+
For nerf-osr (i.e. those with prefix `nosr_`), `dploy_house4`, urbanscene (`urbn_`), eyeful tower (`eft_`),
|
17 |
+
we use `--ImageReader.single_camera 0`.
|
18 |
+
|
19 |
+
For eth3d MVS (`eth3d_dslr_`), we populate the databases with author provided ground truth camera intrinsics.
|
20 |
+
This is to keep the eval protocol consistent with Glomap. see [issue 96](https://github.com/colmap/glomap/issues/96).
|
21 |
+
|
22 |
+
|
23 |
+
## Ground truths
|
24 |
+
|
25 |
+
We use two types of ground-truth formats. The first is colmap `.bin` output.
|
26 |
+
Secondly, for datasets whose ground truths come in non-standard format, we verify and convert them to a white-box json file each containing a list of `{fname: str, c2w: list[float]}`.
|
27 |
+
The `c2w` matrix is in OpenCV convention.
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|