Skip to content

Commit

Permalink
Better linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerbl committed Jul 13, 2023
1 parent 7d8035a commit 35698b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,9 @@ You will need to install a few dependencies before running the project setup.
sudo apt install -y libglew-dev libassimp-dev libboost-all-dev libgtk-3-dev libopencv-dev libglfw3-dev libavdevice-dev libavcodec-dev libeigen3-dev libxxf86vm-dev libembree-dev
# Project setup
cd SIBR_viewers
cmake -Bbuild .
cmake --build build -j 24 --target install --config Release
# Default
cmake -Bbuild . -DCMAKE_BUILD_TYPE=Release # add -G Ninja to build faster
cmake --build build -j24 --target install
```

#### Ubuntu 20.04
Expand Down
14 changes: 7 additions & 7 deletions full_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
args = parser.parse_args()

if not args.skip_training:
common_args = " --quiet --eval --test_iterations -1"
for scene in mipnerf360_outdoor_scenes:
source = args.mipnerf360 + "/" + scene
os.system("python train.py -s " + source + " -i images_4 -m " + args.output_path + "/" + scene + common_args)
for scene in mipnerf360_indoor_scenes:
source = args.mipnerf360 + "/" + scene
os.system("python train.py -s " + source + " -i images_2 -m " + args.output_path + "/" + scene + common_args)
common_args = " --eval "
# for scene in mipnerf360_outdoor_scenes:
# source = args.mipnerf360 + "/" + scene
# os.system("python train.py -s " + source + " -i images_4 -m " + args.output_path + "/" + scene + common_args)
# for scene in mipnerf360_indoor_scenes:
# source = args.mipnerf360 + "/" + scene
# os.system("python train.py -s " + source + " -i images_2 -m " + args.output_path + "/" + scene + common_args)
for scene in tanks_and_temples_scenes:
source = args.tanksandtemples + "/" + scene
os.system("python train.py -s " + source + " -m " + args.output_path + "/" + scene + common_args)
Expand Down

0 comments on commit 35698b6

Please sign in to comment.