forked from lif314/X-KANeRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_render.sh
34 lines (26 loc) · 945 Bytes
/
run_render.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
27
28
29
30
31
32
33
34
#!/bin/bash
start_time=$(date +"%Y-%m-%d %H:%M:%S")
echo "Start Time: $start_time"
start_timestamp=$(date -d "$start_time" +%s)
# export CUDA_VISIBLE_DEVICES=1
# Render example
# exp_path=outputs/rbf-blender-lego/xkanerf/2024-05-11_162426
exp_path=$1
# Render rgb
ns-render interpolate \
--load-config $exp_path/config.yml \
--output-path $exp_path/renders/rgb.mp4 \
--rendered-output-names rgb \
--interpolation-steps 1
# Render depth
ns-render interpolate \
--load-config $exp_path/config.yml \
--output-path $exp_path/renders/depth.mp4 \
--rendered-output-names depth \
--interpolation-steps 1
end_time=$(date +"%Y-%m-%d %H:%M:%S")
echo "End Time: $end_time"
end_timestamp=$(date -d "$end_time" +%s)
total_seconds=$((end_timestamp - start_timestamp))
formatted_time=$(printf "%02d:%02d:%02d" $((total_seconds/3600)) $((total_seconds%3600/60)) $((total_seconds%60)))
echo "Total Time: $formatted_time"