diff options
author | Nick White <git@njw.name> | 2019-01-23 20:47:33 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-01-23 20:47:33 +0000 |
commit | d256f967a26ceeb7c3987a1fc447b126a35054f9 (patch) | |
tree | f80c1e3e2c3757c59ad51dec98de5b6e82a426fa /line-conf-buckets-tess/line-conf-buckets-tess.go | |
parent | c41aa16d8a3d35ce4185184ee50536bf2089a120 (diff) |
Separate out hocr parts from line parts
Diffstat (limited to 'line-conf-buckets-tess/line-conf-buckets-tess.go')
-rw-r--r-- | line-conf-buckets-tess/line-conf-buckets-tess.go | 5 |
1 files changed, 3 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 facd108..b24bdec 100644 --- a/line-conf-buckets-tess/line-conf-buckets-tess.go +++ b/line-conf-buckets-tess/line-conf-buckets-tess.go @@ -17,7 +17,8 @@ import ( "strconv" "strings" - "git.rescribe.xyz/testingtools/hocr" + "git.rescribe.xyz/testingtools/parse" + "git.rescribe.xyz/testingtools/parse/hocr" ) func main() { @@ -33,7 +34,7 @@ func main() { os.Exit(1) } - lines := make(hocr.LineDetails, 0) + lines := make(parse.LineDetails, 0) for _, f := range flag.Args() { file, err := ioutil.ReadFile(f) |