-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_A6000.sh
22 lines (17 loc) · 951 Bytes
/
test_A6000.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
##!/usr/bin/env bash
DTU_TESTING="/home/chenziyang/MVS/MVSData/dtu_test/"
#TANK_TESTING='/home/chenziyang/MVS/MVSData/tankandtemples/'
CKPT_FILE="./checkpoints/Effi-MVS/model_000015.ckpt"
OUT_DIR='FDN-MVS_result'
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 --testlist lists/dtu/test.txt --loadckpt $CKPT_FILE --outdir $OUT_DIR --data_type dtu \
--num_view=5
##tank train_on_dtu
#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=7
##tank train_on_blend
#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=7