-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_dtu.sh
24 lines (18 loc) · 1007 Bytes
/
test_dtu.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
##!/usr/bin/env bash
DTU_TESTING="/media/data1/datasets/dtu/dtu_test_mvsnet/"
TANK_TESTING='/media/data1/datasets/tanksandtemples_1/'
CKPT_FILE="checkpoints/dtu_train.ckpt"
OUT_DIR='outputs/dtu/'
#rt_cor_entropy_conf4 conf=0.4
if [ ! -d $OUT_DIR ]; then
mkdir -p $OUT_DIR
fi
##DTU
python test.py --dataset=general_eval --batch_size=1 --testpath=$DTU_TESTING --ndepths=48 --CostNum=4 --numdepth=384 --GRUiters="3,3,3" --conf=0.5 --cost_reg="small" --testlist lists/dtu/test.txt --loadckpt $CKPT_FILE --outdir $OUT_DIR --data_type dtu \
--num_view=5
##tank dtu_train
#python test.py --dataset=tank --batch_size=1 --testpath=$TANK_TESTING --ndepths=96 --CostNum=4 --numdepth=384 --loadckpt $CKPT_FILE --outdir $OUT_DIR --data_type tank \
# --num_view=11
##tank blend_ft
#python test.py --dataset=tank --batch_size=1 --testpath=$TANK_TESTING --ndepths=96 --CostNum=4 --numdepth=768 --loadckpt $CKPT_FILE --outdir $OUT_DIR --data_type tank \
# --num_view=11