Skip to content

Commit 8943f57

Browse files
author
bkerbl
committed
Update
1 parent 424012c commit 8943f57

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bernhard Kerbl*, Georgios Kopanas*, Thomas Leimkühler, George Drettakis (* indi
33
| [Webpage](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/) | [Full Paper](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/3d_gaussian_splatting_high.pdf) |
44
[Video](https://youtu.be/T_kXY43VZnk) | [Other GRAPHDECO Publications](http://www-sop.inria.fr/reves/publis/gdindex.php) | [FUNGRAPH project page](https://fungraph.inria.fr)
55

6-
[T&T+DB Datasets (650MB)](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/datasets/input/tandt_db.zip) | [Pre-trained Models (14 GB)](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/datasets/pretrained/models.zip) | [Viewer Binaries for Windows (60MB)](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/binaries/viewers.zip) | [Evaluation Images](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/evaluation/images.zip) | <br>
6+
[T&T+DB Datasets (650MB)](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/datasets/input/tandt_db.zip) | [Pre-trained Models (14 GB)](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/datasets/pretrained/models.zip) | [Viewer Binaries for Windows (60MB)](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/binaries/viewers.zip) | [Evaluation Images (7 GB)](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/evaluation/images.zip) | <br>
77
![Teaser image](assets/teaser.png)
88

99
This repository contains the code associated with the paper "3D Gaussian Splatting for Real-Time Radiance Field Rendering", which can be found [here](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/). We further provide the reference images used to create the error metrics reported in the paper, as well as recently created, pre-trained models.

full_eval.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@
3838

3939
if not args.skip_training:
4040
common_args = " --quiet --eval --test_iterations -1"
41-
for scene in tanks_and_temples_scenes:
42-
source = args.tanksandtemples + "/" + scene
43-
os.system("python train.py -s " + source + " -m " + args.output_path + "/" + scene + common_args)
44-
for scene in deep_blending_scenes:
45-
source = args.deepblending + "/" + scene
46-
os.system("python train.py -s " + source + " -m " + args.output_path + "/" + scene + common_args)
4741
for scene in mipnerf360_outdoor_scenes:
4842
source = args.mipnerf360 + "/" + scene
4943
os.system("python train.py -s " + source + " -i images_4 -m " + args.output_path + "/" + scene + common_args)
5044
for scene in mipnerf360_indoor_scenes:
5145
source = args.mipnerf360 + "/" + scene
5246
os.system("python train.py -s " + source + " -i images_2 -m " + args.output_path + "/" + scene + common_args)
47+
for scene in tanks_and_temples_scenes:
48+
source = args.tanksandtemples + "/" + scene
49+
os.system("python train.py -s " + source + " -m " + args.output_path + "/" + scene + common_args)
50+
for scene in deep_blending_scenes:
51+
source = args.deepblending + "/" + scene
52+
os.system("python train.py -s " + source + " -m " + args.output_path + "/" + scene + common_args)
5353

5454
if not args.skip_rendering:
5555
all_sources = []

0 commit comments

Comments
 (0)