whc commited on
Commit
3c1b615
·
verified ·
1 Parent(s): cdd2449

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -2
README.md CHANGED
@@ -1,14 +1,31 @@
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
  ```
@@ -28,5 +45,8 @@ The `c2w` matrix is in OpenCV convention.
28
 
29
  We have added our gt convertion script `convert_gt.py` to this repo as a reference.
30
 
 
 
 
31
 
32
 
 
1
  ---
2
  license: mit
3
  ---
4
+ # Fastmap evaluation suite.
5
+
6
+
7
+ You only need the databases to run fastmap. Download the images if you want to produce colored point cloud.
8
+ Download the subset of data you want to your local directory.
9
+ ```bash
10
+ huggingface-cli download whc/fastmap_sfm --repo-type dataset --local-dir ./ --include 'databases/*' 'ground_truths/*'
11
+ ```
12
+ or use the python interface
13
+ ```python
14
+ from huggingface_hub import hf_hub_download, snapshot_download
15
+ snapshot_download(
16
+ repo_id="whc/fastmap_sfm", repo_type='dataset',
17
+ local_dir="./",
18
+ allow_patterns=["ground_truths/*",],
19
+ max_workers=8
20
+ )
21
+ ```
22
 
23
  ## Images
24
  We performed some light image curation
25
 
26
  ## Databases
27
  Unless specified below, all databases `.db` files are produced with
28
+ ```bash
29
  colmap feature_extractor --ImageReader.single_camera 1 --ImageReader.camera_model SIMPLE_RADIAL --image_path {imgdir} --database_path {db_fname}
30
  colmap exhaustive_matcher --database_path {db_fname}
31
  ```
 
45
 
46
  We have added our gt convertion script `convert_gt.py` to this repo as a reference.
47
 
48
+ ## glomap/colmap container
49
+ We provide a singularity container `glomap_250121.sif` in the repo, and a docker container [here](https://hub.docker.com/r/haochenw/glomap/tags).
50
+ The Dockerfile is printed in the dockerhub overview.
51
 
52