diff options
| author | Nick White <git@njw.name> | 2019-10-08 15:37:07 +0100 | 
|---|---|---|
| committer | Nick White <git@njw.name> | 2019-10-08 15:37:07 +0100 | 
| commit | 787d63fc5d13c6250bd33da5a8e1eadbe86188cd (patch) | |
| tree | 0b6888914ec5a492f95e256095799096ff4d7873 /bucket-lines/main.go | |
| parent | d43c11bf653bfe3c1ad1ed277f1ec08bf155cf98 (diff) | |
Continue separating the repository; remove all but preproc, and move integralimg package under it
Diffstat (limited to 'bucket-lines/main.go')
| -rw-r--r-- | bucket-lines/main.go | 87 | 
1 files changed, 0 insertions, 87 deletions
diff --git a/bucket-lines/main.go b/bucket-lines/main.go deleted file mode 100644 index 990e84c..0000000 --- a/bucket-lines/main.go +++ /dev/null @@ -1,87 +0,0 @@ -package main - -import ( -	"encoding/json" -	"flag" -	"fmt" -	"io/ioutil" -	"log" -	"os" -	"path/filepath" - -	"rescribe.xyz/go.git/lib/hocr" -	"rescribe.xyz/go.git/lib/line" -	"rescribe.xyz/go.git/lib/prob" -) - -func main() { -	b := BucketSpecs{ -		// minimum confidence, name -		{0, "bad"}, -		{0.95, "95to98"}, -		{0.98, "98plus"}, -	} - -	flag.Usage = func() { -		fmt.Fprintf(os.Stderr, "Usage: bucket-lines [-d dir] [-s specs.json] [hocr1] [prob1] [hocr2] [...]\n") -		fmt.Fprintf(os.Stderr, "Copies image-text line pairs into different directories according\n") -		fmt.Fprintf(os.Stderr, "to the average character probability for the line.\n") -		fmt.Fprintf(os.Stderr, "Both .hocr and .prob files can be processed.\n") -		fmt.Fprintf(os.Stderr, "For .hocr files, the x_wconf data is used to calculate confidence.\n") -		fmt.Fprintf(os.Stderr, "The .prob files are generated using ocropy-rpred's --probabilities\n") -		fmt.Fprintf(os.Stderr, "option.\n") -		fmt.Fprintf(os.Stderr, "The .prob and .hocr files are assumed to be in the same directory\n") -		fmt.Fprintf(os.Stderr, "as the line's image and text files.\n\n") -		flag.PrintDefaults() -		fmt.Fprintf(os.Stderr, "\nAn example specs.json file would be the following:\n") -		fmt.Fprintf(os.Stderr, "[{\"min\": 0, \"name\": \"terrible\"}, {\"min\": 0.80, \"name\": \"ok\"}, {\"min\": 0.98, \"name\": \"great\"}]\n") -	} -	dir := flag.String("d", "buckets", "Directory to store the buckets") -	specs := flag.String("s", "", "JSON file describing specs to bucket into") -	flag.Parse() -	if flag.NArg() < 1 { -		flag.Usage() -		os.Exit(1) -	} - -	if *specs != "" { -		js, err := ioutil.ReadFile(*specs) -		if err != nil { -			log.Fatal(err) -		} -		err = json.Unmarshal(js, &b) -		if err != nil { -			log.Fatal(err) -		} -	} - -	var err error -	lines := make(line.Details, 0) - -	for _, f := range flag.Args() { -		var newlines line.Details -		switch ext := filepath.Ext(f); ext { -		case ".prob": -			newlines, err = prob.GetLineDetails(f) -		case ".hocr": -			newlines, err = hocr.GetLineDetails(f) -		default: -			log.Printf("Skipping file '%s' as it isn't a .prob or .hocr\n", f) -			continue -		} -		if err != nil { -			log.Fatal(err) -		} - -		for _, l := range newlines { -			lines = append(lines, l) -		} -	} - -	stats, err := BucketUp(lines, b, *dir) -	if err != nil { -		log.Fatal(err) -	} - -	PrintBucketStats(os.Stdout, stats) -}  | 
