diff options
author | Nick White <git@njw.name> | 2019-01-23 21:54:09 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-01-23 21:54:15 +0000 |
commit | fb77852acbdbbcedcdb9771770cb6771da002851 (patch) | |
tree | 233b6cedea313702c994919906d156d829ed378e /line-conf-buckets-tess/line-conf-buckets-tess.go | |
parent | d256f967a26ceeb7c3987a1fc447b126a35054f9 (diff) |
Update line-conf-buckets to mostly use package functions too.
Working now, but needs more consolidation to be worth it.
Diffstat (limited to 'line-conf-buckets-tess/line-conf-buckets-tess.go')
-rw-r--r-- | line-conf-buckets-tess/line-conf-buckets-tess.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/line-conf-buckets-tess/line-conf-buckets-tess.go b/line-conf-buckets-tess/line-conf-buckets-tess.go index b24bdec..8abdff3 100644 --- a/line-conf-buckets-tess/line-conf-buckets-tess.go +++ b/line-conf-buckets-tess/line-conf-buckets-tess.go @@ -92,7 +92,7 @@ func main() { avgstr := strconv.FormatFloat(l.Avgconf, 'f', 5, 64) avgstr = avgstr[2:] - outname := filepath.Join(outdir, todir, l.Hocrname + "_" + l.Name + "_" + avgstr + ".png") + outname := filepath.Join(outdir, todir, l.OcrName + "_" + l.Name + "_" + avgstr + ".png") err := os.MkdirAll(filepath.Join(outdir, todir), 0700) if err != nil { @@ -111,7 +111,7 @@ func main() { log.Fatal(err) } - outname = filepath.Join(outdir, todir, l.Hocrname + "_" + l.Name + "_" + avgstr + ".txt") + outname = filepath.Join(outdir, todir, l.OcrName + "_" + l.Name + "_" + avgstr + ".txt") outfile, err = os.Create(outname) if err != nil { fmt.Fprintf(os.Stderr, "Failed to create %s\n", outname) |