summaryrefslogtreecommitdiff
path: root/cmd/confgraph/main.go
blob: 864e44b4ebbaa0d6841a1e3a053e34dc2a947efc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright 2019 Nick White.
// Use of this source code is governed by the GPLv3
// license that can be found in the LICENSE file.

// confgraph creates a graph showing the average word confidence
// of each page of hOCR in a directory.
package main

import (
	"flag"
	"fmt"
	"log"
	"os"
	"path/filepath"
	"strings"

	"rescribe.xyz/bookpipeline"
	"rescribe.xyz/utils/pkg/hocr"
)

const usage = `Usage: confgraph hocrdir graph.png

confgraph creates a graph showing average word confidence of each
page of hOCR in a directory.
`

func walker(confs *[]*bookpipeline.Conf) filepath.WalkFunc {
	return func(path string, info os.FileInfo, err error) error {
		if info.IsDir() {
			return nil
		}
		if !strings.HasSuffix(path, ".hocr") {
			return nil
		}
		avg, err := hocr.GetAvgConf(path)
		if err != nil {
			if err.Error() == "No words found" {
				return nil
			}
			return err
		}
		c := bookpipeline.Conf{
			Conf: avg,
			Path: path,
		}
		*confs = append(*confs, &c)
		return nil
	}
}

func main() {
	flag.Usage = func() {
		fmt.Fprintln(flag.CommandLine.Output(), usage)
		flag.PrintDefaults()
	}
	flag.Parse()

	if flag.NArg() != 2 {
		flag.Usage()
		return
	}

	var confs []*bookpipeline.Conf
	err := filepath.Walk(flag.Arg(0), walker(&confs))
	if err != nil {
		log.Fatalln("Failed to walk", flag.Arg(0), err)
	}

	// Structure to fit what bookpipeline.Graph needs
	// TODO: probably reorganise bookpipeline to just need []*Conf
	cconfs := make(map[string]*bookpipeline.Conf)
	for _, c := range confs {
		cconfs[c.Path] = c
	}

	fn := flag.Arg(1)
	f, err := os.Create(fn)
	if err != nil {
		log.Fatalln("Error creating file", fn, err)
	}
	defer f.Close()
	err = bookpipeline.Graph(cconfs, filepath.Base(flag.Arg(0)), f)
	if err != nil {
		log.Fatalln("Error creating graph", err)
	}
}