diff options
Diffstat (limited to 'allpgsconf.sh')
-rw-r--r-- | allpgsconf.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/allpgsconf.sh b/allpgsconf.sh index 60ea4d6..82b24f0 100644 --- a/allpgsconf.sh +++ b/allpgsconf.sh @@ -5,6 +5,8 @@ Calculate the average confidence of each page, saving them in a file called hocr-avgpgconf in the book directory." test $# -ne 1 && echo "$usage" && exit 1 +TRAININGNAME=rescribealphav4 + ### calculate averages for hocr (tesseract) o="$1/hocr-avgpgconf" @@ -12,7 +14,7 @@ printf '' > "$o" for i in "$1"/*hocr do - b=`basename "$i" .hocr` + b=`basename "$i" .hocr | sed 's/_'"$TRAININGNAME"'//; s/.jpg//g; s/.png//g'` pgavg=`avg-lines "$i" 2>/dev/null \ | awk -F ':' '{print $2}' \ |