forked from rpng/open_vins
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrun_ros_tumvi.sh
executable file
·117 lines (94 loc) · 2.83 KB
/
run_ros_tumvi.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env bash
# Source our workspace directory to load ENV variables
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
source ${SCRIPT_DIR}/../../../../devel/setup.bash
#=============================================================
#=============================================================
#=============================================================
# estimator configurations
modes=(
"mono"
"binocular"
"stereo"
)
# dataset locations
bagnames=(
"dataset-room1_512_16"
"dataset-room2_512_16"
"dataset-room3_512_16"
"dataset-room4_512_16"
"dataset-room5_512_16"
# "dataset-room6_512_16" # requires lower imu init threshold...
)
# how far we should start into the dataset
# this can be used to skip the initial sections
bagstarttimes=(
"0"
"0"
"0"
"0"
"0"
# "0" # requires lower imu init threshold...
)
# location to save log files into
save_path1="/home/patrick/github/pubs_data/pgeneva/2023_openvins_reproduce/exp_tumvi/algorithms"
save_path2="/home/patrick/github/pubs_data/pgeneva/2023_openvins_reproduce/exp_tumvi/timings"
bag_path="/media/patrick/Windows/datasets/tum_vi/"
ov_ver="2.7"
#=============================================================
#=============================================================
#=============================================================
big_start_time="$(date -u +%s)"
# Loop through all datasets
for i in "${!bagnames[@]}"; do
# Loop through all modes
for h in "${!modes[@]}"; do
# Monte Carlo runs for this dataset
# If you want more runs, change the below loop
for j in {00..00}; do
# start timing
start_time="$(date -u +%s)"
filename_est="$save_path1/ov_${ov_ver}_${modes[h]}/${bagnames[i]}/${j}_estimate.txt"
filename_time="$save_path2/ov_${ov_ver}_${modes[h]}/${bagnames[i]}/${j}_timing.txt"
# number of cameras
if [ "${modes[h]}" == "mono" ]
then
temp1="1"
temp2="true"
fi
if [ "${modes[h]}" == "binocular" ]
then
temp1="2"
temp2="false"
fi
if [ "${modes[h]}" == "stereo" ]
then
temp1="2"
temp2="true"
fi
# run our ROS launch file (note we send console output to terminator)
# subscribe=live pub, serial=read from bag (fast)
roslaunch ov_msckf serial.launch \
max_cameras:="$temp1" \
use_stereo:="$temp2" \
config:="tum_vi" \
dataset:="${bagnames[i]}" \
bag:="$bag_path/${bagnames[i]}.bag" \
bag_start:="${bagstarttimes[i]}" \
dobag:="true" \
dosave:="true" \
path_est:="$filename_est" \
dotime:="true" \
dolivetraj:="true" \
path_time:="$filename_time" &> /dev/null
# print out the time elapsed
end_time="$(date -u +%s)"
elapsed="$(($end_time-$start_time))"
echo "BASH: ${modes[h]} - ${bagnames[i]} - run $j took $elapsed seconds";
done
done
done
# print out the time elapsed
big_end_time="$(date -u +%s)"
big_elapsed="$(($big_end_time-$big_start_time))"
echo "BASH: script took $big_elapsed seconds in total!!";