-
Notifications
You must be signed in to change notification settings - Fork 16
/
jetson-launch.sh
executable file
·308 lines (281 loc) · 7.59 KB
/
jetson-launch.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#!/bin/bash
# Copyright (c) 2021 Carnegie Mellon University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
trap ctrl_c INT QUIT TERM HUP
function ctrl_c() {
IFS=' '
for conf in $config; do
IFS=':'
items=($conf)
ipaddress=${items[1]}
if [ $verbose -eq 1 ]; then
com="ssh -l $user $ipaddress \"cd cabot; docker-compose -f docker-compose-jetson.yaml down\""
else
com="ssh -l $user $ipaddress \"cd cabot; docker-compose -f docker-compose-jetson.yaml down\" > /dev/null 2>&1"
fi
if [ $verbose -eq 1 ]; then
echo $com
fi
eval $com
done
for pid in ${pids[@]}; do
if [ $verbose -eq 1 ]; then
kill -s 2 $pid
else
kill -s 2 $pid > /dev/null 2>&1
fi
done
for pid in ${pids[@]}; do
if [ $verbose -eq 1 ]; then
while kill -0 $pid; do
snore 1
done
else
while kill -0 $pid > /dev/null 2>&1; do
snore 1
done
fi
done
exit
}
function snore()
{
local IFS
[[ -n "${_snore_fd:-}" ]] || exec {_snore_fd}<> <(:)
read ${1:+-t "$1"} -u $_snore_fd || :
}
function err {
>&2 red "[ERROR] "$@
}
function red {
echo -en "\033[31m" ## red
echo $@
echo -en "\033[0m" ## reset color
}
function blue {
echo -en "\033[36m" ## blue
echo $@
echo -en "\033[0m" ## reset color
}
function help {
echo "Usage"
echo ""
echo "-h show this help"
echo "-d debug mode, show in xterm"
echo "-t test mode, launch roscore, publish transform"
echo "-s run on simulator"
echo "-u <user> user name"
echo "-c <config> configuration"
echo " tracking T:<ip>"
echo " detection D:<ip>:<ns>"
echo "-S <serial> serial numbers of realsense cameras"
echo "-f <fps> RGB fps"
echo "-p <fps> depth fps"
echo "-r <resolution> resolution"
echo "-o [1-3] use specified opencv dnn implementation"
echo " 1: python-opencv, 2: cpp-opencv-node, 3: cpp-opencv-nodelet"
echo "-v verbose"
echo ""
echo "$0 -u <user> -c \"T:192.168.1.50 D:192.168.1.51:rs1 \""
}
pids=()
pwd=`pwd`
scriptdir=`dirname $0`
cd $scriptdir
scriptdir=`pwd`
user=
config=
serial_nums=
rgb_fps=
depth_fps=
resolution=
testmode=0
testopt=
simulator=0
command="bash -c \""
commandpost="\"&"
verbose=0
while getopts "hdtsu:c:S:f:p:r:o:v" arg; do
case $arg in
h)
help
exit
;;
d)
command="setsid xterm -fa 'Monospace' -fs 11 -e \""
commandpost=";read\"&"
;;
t)
testmode=1
testopt="-t"
;;
s)
simulator=1
;;
u)
user=$OPTARG
;;
c)
config=$OPTARG
;;
S)
serial_nums=$OPTARG
;;
f)
rgb_fps=$OPTARG
;;
p)
depth_fps=$OPTARG
;;
r)
resolution=$OPTARG
;;
o)
opencv_dnn_ver=$OPTARG
;;
v)
verbose=1
;;
esac
done
error=0
if [ -z "$user" ]; then
err "Please specify user to login"
error=1
fi
if [ -z "$config" ]; then
err "Config is not specified"
error=1
fi
if [ -z "$serial_nums" ]; then
err "RealSense serial number is not specified"
error=1
fi
if [ -z "$opencv_dnn_ver" ]; then
err "opencv dnn implementation is not specified"
error=1
fi
if [ $error -eq 1 ]; then
help
exit
fi
if [ $testmode -eq 1 ]; then
if [ $verbose -eq 1 ]; then
com="$command roscore $commandpost"
else
com="$command roscore > /dev/null $commandpost"
fi
eval $com
pids+=($!)
fi
declare -A serial_array
for serial_num in $serial_nums; do
OLDIFS=$IFS
IFS=':'
items=($serial_num)
serial_array[${items[0]}]=${items[1]}
IFS=$OLDIFS
done
for conf in $config; do
OLDIFS=$IFS
IFS=':'
items=($conf)
mode=${items[0]}
ipaddress=${items[1]}
name=${items[2]}
IFS=$OLDIFS
if [ $verbose -eq 1 ]; then
echo $conf $mode $ipaddress $name
fi
if [ "$mode" == 'D' ]; then
if [ -z $name ]; then
err "You need to specify camera namespace"
exit
fi
if [ -z ${serial_array[$name]} ]; then
err "You need to specify RealSense serial number for camera $name"
exit
fi
blue "launch detect @ $ipaddress with $name"
serial=${serial_array[$name]}
camopt="-r -D -v $opencv_dnn_ver"
if [ $simulator -eq 1 ]; then
camopt="-s -D -v $opencv_dnn_ver"
fi
if [ $verbose -eq 1 ]; then
com="$command ssh -l $user $ipaddress \
\\\"cd cabot; \
export CABOT_DETECT_PEOPLE_CONF_THRES='$CABOT_DETECT_PEOPLE_CONF_THRES'; \
export CABOT_DETECT_PEOPLE_FPS='$CABOT_DETECT_PEOPLE_FPS'; \
docker-compose -f docker-compose-jetson.yaml run --rm people-jetson sudo /resetrs.sh \
$serial; \
docker-compose -f docker-compose-jetson.yaml run --rm people-jetson /launch.sh \
$testopt \
$camopt \
-N ${name} \
-F ${rgb_fps} \
-P ${depth_fps} \
-R ${resolution} \
-f ${name}_link \
-S ${serial} \\\" $commandpost"
else
com="$command ssh -l $user $ipaddress \
\\\"cd cabot; \
export CABOT_DETECT_PEOPLE_CONF_THRES='$CABOT_DETECT_PEOPLE_CONF_THRES'; \
export CABOT_DETECT_PEOPLE_FPS='$CABOT_DETECT_PEOPLE_FPS'; \
docker-compose -f docker-compose-jetson.yaml run --rm people-jetson sudo /resetrs.sh \
$serial; \
docker-compose -f docker-compose-jetson.yaml run --rm people-jetson /launch.sh \
$testopt \
$camopt \
-N ${name} \
-F ${rgb_fps} \
-P ${depth_fps} \
-R ${resolution} \
-f ${name}_link \
-S ${serial} \\\" > /dev/null 2>&1 $commandpost"
fi
elif [ "$mode" == 'T' ]; then
blue "launch tracking @ $ipaddress"
if [ $verbose -eq 1 ]; then
com="$command ssh -l $user $ipaddress \
\\\"cd cabot; \
docker-compose -f docker-compose-jetson.yaml run --rm people-jetson /launch.sh \
-K \\\" $commandpost"
else
com="$command ssh -l $user $ipaddress \
\\\"cd cabot; \
docker-compose -f docker-compose-jetson.yaml run --rm people-jetson /launch.sh \
-K \\\" > /dev/null 2>&1 $commandpost"
fi
else
err "Unknown mode: $mode"
exit
fi
if [ $verbose -eq 1 ]; then
echo $com
fi
eval $com
pids+=($!)
done
while [ 1 -eq 1 ];
do
snore 1
done