1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash # This script reproduces a representative figure. # Run this script after the project has been built (using the grsi-install.sh script or by following the instructions in README.md). # Exit on errors. set -o errexit echo "" echo "This program will reproduce the contents of Fig. 2 in the paper." echo "" # Run the program. cd build ./coarse_to_fine |