Yuehao commited on
Commit
4b898aa
·
verified ·
1 Parent(s): 60ccfca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -11,6 +11,23 @@ tags:
11
 
12
  # BilaRF Dataset
13
 
14
- This repo contains the data in the paper ["Bilateral Guided Radiance Field Processing"](https://bilarfpro.github.io/).
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
 
11
 
12
  # BilaRF Dataset
13
 
14
+ **[Project Page](https://bilarfpro.github.io/) | [Arxiv]() | [Code](https://github.com/yuehaowang/bilarf)**
15
 
16
+ This dataset contains our own captured nighttime scenes, synthetic data generated from [RawNeRF dataset](https://bmild.github.io/rawnerf/), and editing samples.
17
+
18
+ To use the data, please go to 'Files and versions' and download 'bilarf_data.zip'.
19
+
20
+ The dataset follows the file structure of [NeRF LLFF data](https://drive.google.com/drive/folders/14boI-o5hGO9srnWaaogTU5_ji7wkX2S7) (forward-facing scenes). In addition, the editing samples are stored in the 'edits/' directory. We also provide 'ext_metadata.json' that can offer info about scenes. The data loader in this codebase currently supports the following two fields:
21
+ ```js
22
+ {
23
+ /** The `spiral_radius_scale` field specifies the radius of spiral camera path to
24
+ ensure view synthesis is not out of the bound of the reconstructed scene. */
25
+ "spiral_radius_scale": 0.5,
26
+
27
+ /** For scenes synthesized from RawNeRF dataset, `no_factor_suffix` is set to `true`
28
+ to suggest loading downsized training images directly from the 'images/' directory
29
+ instead of 'images_X/', where X is specified by `Config.factor`. */
30
+ "no_factor_suffix": true
31
+ }
32
+ ```
33