From a46b217fd34f1bb3ee9f675fcb24cbc9a8cc2847 Mon Sep 17 00:00:00 2001 From: Nick White Date: Thu, 31 Oct 2019 10:40:28 +0000 Subject: Export a couple of more generally useful functions --- pkg/hocr/hocr.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/hocr/hocr.go') diff --git a/pkg/hocr/hocr.go b/pkg/hocr/hocr.go index dcd0494..c3c88b3 100644 --- a/pkg/hocr/hocr.go +++ b/pkg/hocr/hocr.go @@ -47,7 +47,7 @@ func wordConf(s string) (float64, error) { return strconv.ParseFloat(conf[1], 64) } -func boxCoords(s string) ([4]int, error) { +func BoxCoords(s string) ([4]int, error) { var coords [4]int re, err := regexp.Compile(`bbox ([0-9]+) ([0-9]+) ([0-9]+) ([0-9]+)`) if err != nil { @@ -95,7 +95,7 @@ func GetText(hocrfn string) (string, error) { for _, l := range h.Lines { - s += getLineText(l) + s += LineText(l) + "\n" } return s, nil } -- cgit v1.2.1-24-ge1ad