#! /bin/bash
# Last edited on 2023-09-18 11:29:24 by stolfi

show=0

big_images=( \
  refa \
  nt032a wc001a wc002a wc003a wc007a \
  wc010a wc051a wc052a wc053a wc054a \
  wc055a wc056a wc057a wc058a wc059a \
  wc060a wc061a wc082a wc093a \
  refb \
  nt033b wc001b wc002b wc003b wc004b wc007b \
  wc010b wc015b wc071b wc072b wc073b wc074b \
  wc075b wc076b wc077b wc083b wc093b \
)
first_sg=01; last_sg=49
for ct in `count ${first_sg} ${last_sg}`; do 
  sg="E${ct}"
  for img in ${big_images[@]} ; do 
    glyph_extract_one_img_sg.sh ${img} ${sg} ${show}
  done
done
