-
Notifications
You must be signed in to change notification settings - Fork 70
/
eval.sh
26 lines (21 loc) · 1.43 KB
/
eval.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash
CHECKPOINT_FILE="./checkpoints/params_000007.ckpt"
# test on DTU's evaluation set
DTU_TESTING="/home/dtu/"
python eval.py --scan_list ./lists/dtu/test.txt --input_folder=$DTU_TESTING --output_folder=$DTU_TESTING \
--checkpoint_path $CHECKPOINT_FILE --num_views 5 --image_max_dim 1600 --geo_mask_thres 3 --photo_thres 0.8 "$@"
# -------------------------------------------------------------------------------------
# test on eth3d benchmark
#ETH3D_TESTING="/home/eth3d_high_res_test/"
#python eval.py --scan_list ./lists/eth3d/test.txt --input_folder=$ETH3D_TESTING --output_folder=$ETH3D_TESTING \
#--checkpoint_path $CHECKPOINT_FILE --num_views 7 --image_max_dim 2688 --geo_mask_thres 2 --photo_thres 0.6 "$@"
# -------------------------------------------------------------------------------------
# test on tanks & temples
#TANK_TESTING="/home/TankandTemples/"
#python eval.py --scan_list lists/tanks/intermediate.txt --input_folder=$TANK_TESTING --output_folder=$TANK_TESTING \
#--checkpoint_path $CHECKPOINT_FILE --num_views 7 --image_max_dim 2048 --geo_mask_thres 5 --photo_thres 0.8 "$@"
# -------------------------------------------------------------------------------------
# test on your custom dataset
#CUSTOM_TESTING="/home/custom/"
#python eval.py --input_folder=$CUSTOM_TESTING --output_folder=$CUSTOM_TESTING --checkpoint_path $CHECKPOINT_FILE \
#--num_views 10 --image_max_dim 2048 --geo_mask_thres 5 --photo_thres 0.5 "$@"