Advertisement
sombruxo

rosrun.sh

Jan 25th, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.87 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. #
  3. # Start an instance of the jetson-inference docker container.
  4. # See below or run this script with -h or --help to see usage options.
  5. #
  6. # This script should be run from the root dir of the jetson-inference project:
  7. #
  8. # $ cd /path/to/your/jetson-inference
  9. # $ docker/run.sh
  10. #
  11.  
  12. show_help() {
  13. echo " "
  14. echo "usage: Starts the Docker container and runs a user-specified command"
  15. echo " "
  16. echo " ./docker/run.sh --container DOCKER_IMAGE"
  17. echo " --volume HOST_DIR:MOUNT_DIR"
  18. echo " --run RUN_COMMAND"
  19. echo " "
  20. echo "args:"
  21. echo " "
  22. echo " --help Show this help text and quit"
  23. echo " "
  24. echo " -c, --container DOCKER_IMAGE Specifies the name of the Docker container"
  25. echo " image to use (default: 'nvidia-l4t-base')"
  26. echo " "
  27. echo " -v, --volume HOST_DIR:MOUNT_DIR Mount a path from the host system into"
  28. echo " the container. Should be specified as:"
  29. echo " "
  30. echo " -v /my/host/path:/my/container/path"
  31. echo " "
  32. echo " (these should be absolute paths)"
  33. echo " "
  34. echo " -r, --run RUN_COMMAND Command to run once the container is started."
  35. echo " Note that this argument must be invoked last,"
  36. echo " as all further arguments will form the command."
  37. echo " If no run command is specified, an interactive"
  38. echo " terminal into the container will be provided."
  39. echo " "
  40. }
  41.  
  42. die() {
  43. printf '%s\n' "$1"
  44. show_help
  45. exit 1
  46. }
  47.  
  48. CONTAINER_IMAGE="dustynv/jetson-inference:ros"
  49.  
  50. # paths to some project directories
  51. NETWORKS_DIR="data/networks"
  52. CLASSIFY_DIR="python/training/classification"
  53. DETECTION_DIR="python/training/detection/ssd"
  54.  
  55. DOCKER_ROOT="/jetson-inference" # where the project resides inside docker
  56.  
  57. # check if we need to download models
  58. SIZE_MODELS=$(du -sb $NETWORKS_DIR | cut -f 1)
  59.  
  60. echo "size of $NETWORKS_DIR: $SIZE_MODELS bytes"
  61.  
  62. if [[ $SIZE_MODELS -lt 204800 ]]; then # some text files come with the repo (~78KB), so check for a bit more than that
  63. sudo apt-get update
  64. sudo apt-get install dialog
  65. echo "Models have not yet been downloaded, running model downloader tool now..."
  66. cd tools
  67. ./download-models.sh
  68. cd ../
  69. fi
  70.  
  71. # check for pytorch-ssd base model
  72. SSD_BASE_MODEL="$DETECTION_DIR/models/mobilenet-v1-ssd-mp-0_675.pth"
  73.  
  74. if [ ! -f "$SSD_BASE_MODEL" ]; then
  75. echo "Downloading pytorch-ssd base model..."
  76. wget --quiet --show-progress --progress=bar:force:noscroll --no-check-certificate https://nvidia.box.com/shared/static/djf5w54rjvpqocsiztzaandq1m3avr7c.pth -O $SSD_BASE_MODEL
  77. fi
  78.  
  79. # generate mount commands
  80. DATA_VOLUME="\
  81. --volume $PWD/data:$DOCKER_ROOT/data \
  82. --volume $PWD/$CLASSIFY_DIR/data:$DOCKER_ROOT/$CLASSIFY_DIR/data \
  83. --volume $PWD/$CLASSIFY_DIR/models:$DOCKER_ROOT/$CLASSIFY_DIR/models \
  84. --volume $PWD/$DETECTION_DIR/data:$DOCKER_ROOT/$DETECTION_DIR/data \
  85. --volume $PWD/$DETECTION_DIR/models:$DOCKER_ROOT/$DETECTION_DIR/models \
  86. --volume /home/jetros/catkin_ws:/root/catkin_ws"
  87.  
  88. # parse user arguments
  89. USER_VOLUME=""
  90. USER_COMMAND=""
  91.  
  92. while :; do
  93. case $1 in
  94. -h|-\?|--help)
  95. show_help # Display a usage synopsis.
  96. exit
  97. ;;
  98. -c|--container) # Takes an option argument; ensure it has been specified.
  99. if [ "$2" ]; then
  100. CONTAINER_IMAGE=$2
  101. shift
  102. else
  103. die 'ERROR: "--container" requires a non-empty option argument.'
  104. fi
  105. ;;
  106. --container=?*)
  107. CONTAINER_IMAGE=${1#*=} # Delete everything up to "=" and assign the remainder.
  108. ;;
  109. --container=) # Handle the case of an empty --image=
  110. die 'ERROR: "--container" requires a non-empty option argument.'
  111. ;;
  112. -v|--volume)
  113. if [ "$2" ]; then
  114. USER_VOLUME=" -v $2 "
  115. shift
  116. else
  117. die 'ERROR: "--volume" requires a non-empty option argument.'
  118. fi
  119. ;;
  120. --volume=?*)
  121. USER_VOLUME=" -v ${1#*=} " # Delete everything up to "=" and assign the remainder.
  122. ;;
  123. --volume=) # Handle the case of an empty --image=
  124. die 'ERROR: "--volume" requires a non-empty option argument.'
  125. ;;
  126. -r|--run)
  127. if [ "$2" ]; then
  128. shift
  129. USER_COMMAND=" $@ "
  130. else
  131. die 'ERROR: "--run" requires a non-empty option argument.'
  132. fi
  133. ;;
  134. --) # End of all options.
  135. shift
  136. break
  137. ;;
  138. -?*)
  139. printf 'WARN: Unknown option (ignored): %s\n' "$1" >&2
  140. ;;
  141. *) # Default case: No more options, so break out of the loop.
  142. break
  143. esac
  144.  
  145. shift
  146. done
  147.  
  148. echo "CONTAINER: $CONTAINER_IMAGE"
  149. echo "DATA_VOLUME: $DATA_VOLUME"
  150. echo "USER_VOLUME: $USER_VOLUME"
  151. echo "USER_COMMAND: $USER_COMMAND"
  152.  
  153. # check for V4L2 devices
  154. V4L2_DEVICES=" "
  155.  
  156. for i in {0..9}
  157. do
  158. if [ -a "/dev/video$i" ]; then
  159. V4L2_DEVICES="$V4L2_DEVICES --device /dev/video$i "
  160. fi
  161. done
  162.  
  163. echo "V4L2_DEVICES: $V4L2_DEVICES"
  164.  
  165. # run the container
  166. sudo xhost +si:localuser:root
  167.  
  168. sudo docker run --runtime nvidia -it --rm --security-opt seccomp=unconfined --network host -e DISPLAY=$DISPLAY \
  169. -v /tmp/.X11-unix/:/tmp/.X11-unix \
  170. -v /tmp/argus_socket:/tmp/argus_socket \
  171. -v /etc/enctune.conf:/etc/enctune.conf \
  172. $V4L2_DEVICES $DATA_VOLUME $USER_VOLUME \
  173. $CONTAINER_IMAGE $USER_COMMAND
  174.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement