From 66aa5d1712d348852dca5719006b54984201ce5b Mon Sep 17 00:00:00 2001 From: Matthew McWilliams Date: Fri, 11 Nov 2022 10:09:14 -0500 Subject: [PATCH] Add a script that draws the calibration page fiducials --- calibration.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 calibration.sh diff --git a/calibration.sh b/calibration.sh new file mode 100644 index 0000000..0ccb605 --- /dev/null +++ b/calibration.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +########################### +# +# Draws all svgs in a sequence. Starts with a +# fieldguide unless beginning the sequence not +# on the first frame, provided as the second argument. +# +########################### + +source ./common.sh + +dbSetup + + +for i in {1..4} ; do + echo "Drawing focus field ${i}..." + bash field.sh "${i}" + + askContinue "Draw next focus field?" "Drawing next field..." +done \ No newline at end of file