Skip to content

Commit 88683e2

Browse files
committed
update pretrained scenes on RawNeRF
1 parent 793a661 commit 88683e2

File tree

5 files changed

+40
-1
lines changed

5 files changed

+40
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</a>
55
</p>
66

7-
## <div align="center"><a href="https://srameo.github.io/projects/le3d/">Web Viewer</a> | <a href="https://srameo.github.io/projects/le3d/intro.html">Homepage</a> | <a href="https://arxiv.org/abs/2406.06216">Paper</a> | Google Drive (TBD) | <a href="docs/editor.md">Editor</a> | <a href="docs/README_cn.md">中文版</a>
7+
## <div align="center"><a href="https://srameo.github.io/projects/le3d/">Web Viewer</a> | <a href="https://srameo.github.io/projects/le3d/intro.html">Homepage</a> | <a href="https://arxiv.org/abs/2406.06216">Paper</a> | <a href="https://drive.google.com/drive/folders/1dJLT7YDHs28aKG0sRmmUm5Qeusp_37r0?usp=drive_link"> Google Drive</a> | <a href="docs/editor.md">Editor</a> | <a href="docs/README_cn.md">中文版</a>
88
<div align="center">
99

1010
:newspaper: [**News**](#newspaper-news) | :wrench: [**Install**](#wrench-dependencies-and-installation) | :tv:[**Quick Demo**](https://srameo.github.io/projects/le3d/) | :camera: [Training and Editing](#camera-training-and-editing) | :construction: [**Contribute**](docs/develop.md) | :scroll: [**License**](#scroll-license) | :question:[**FAQ**](https://github.com/Srameo/LE3D/issues?q=label%3AFAQ+)
@@ -46,6 +46,7 @@ Want to make your own 3D video story board? Please refer to [LE3D Editor](docs/e
4646
> Future work can be found in [todo.md](docs/todo.md).
4747
4848
<ul>
49+
<li><b>Jan 15, 2025</b>: Update pretrained scenes on the <a href="https://bmild.github.io/rawnerf/">RawNeRF</a> dataset, can be seen in <a href="https://drive.google.com/drive/folders/1dJLT7YDHs28aKG0sRmmUm5Qeusp_37r0?usp=drive_link"> Google Drive</a>.</li>
4950
<li><b>Jan 8, 2025</b>: Code released.</li>
5051
<li><b>Jan 3, 2025</b>: Release a <a href="https://srameo.github.io/projects/le3d/">web demo</a> for LE3D! you could view your own recontructed HDR scene in real-time! Codes on <a href="https://github.com/Srameo/hdr-splat">hdr-splat</a>.</li>
5152
<li><b>Oct 10, 2024</b>: LE3D is accepted by NIPS 2024!</li>
@@ -174,6 +175,7 @@ We provide two ways for share your reconstructed HDR scene on social media.
174175
# e.g.
175176
bash scripts/export_splat.sh output/le3d/bikes latest
176177
```
178+
Then you could run `python -m http.server ./output/splat/bikes` to start a viewer for the reconstructed scenes.<br/>
177179
Selected scenes can be found in our [web viewer](https://srameo.github.io/projects/le3d/).
178180
2. Use the [LE3D Editor](docs/editor.md) to create a video story board and share it on social media.
179181

datasets/.keepme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
You could symlink the datasets to this folder.

options/le3d/parkstatus.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
base: options/le3d/base.yaml
2+
3+
name: le3d/parkstatue
4+
5+
datasets:
6+
train:
7+
name: rawnerf_parkstatue_train
8+
scene_root: datasets/rawnerf/scenes/parkstatue_pinhole
9+
10+
val:
11+
name: rawnerf_parkstatue_val
12+
scene_root: datasets/rawnerf/scenes/parkstatue_pinhole
13+
14+
network_g:
15+
init_ply_path: datasets/rawnerf/scenes/parkstatue_pinhole/sparse/0/points3D.ply

options/le3d/streetcorner.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
base: options/le3d/base.yaml
2+
3+
name: le3d/streetcorner
4+
5+
datasets:
6+
train:
7+
name: rawnerf_streetcorner_train
8+
scene_root: datasets/rawnerf/scenes/streetcorner_pinhole
9+
10+
val:
11+
name: rawnerf_streetcorner_val
12+
scene_root: datasets/rawnerf/scenes/streetcorner_pinhole
13+
14+
network_g:
15+
init_ply_path: datasets/rawnerf/scenes/streetcorner_pinhole/sparse/0/points3D.ply

scripts/export_splat.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ fi
1313

1414
python submodules/hdr-splat/convert.py $EXP_PATH/models/net_g_$ITER.ply -o output/splat/$EXP_NAME/$ITER.splat
1515
cp $EXP_PATH/meta_data.json output/splat/$EXP_NAME/meta_data.json
16+
17+
cp submodules/hdr-splat/main.js output/splat/$EXP_NAME/main.js
18+
cp submodules/hdr-splat/index.html output/splat/$EXP_NAME/index.html
19+
20+
sed -i "s|const splatUrl = \"./gardenlights.splat\";|const splatUrl = \"./$ITER.splat\";|" output/splat/$EXP_NAME/main.js
21+
sed -i "s|const metaDataJson = \"./gardenlights.json\";|const metaDataJson = \"./meta_data.json\";|" output/splat/$EXP_NAME/main.js

0 commit comments

Comments
 (0)