diff options
author | Nick White <git@njw.name> | 2019-06-25 15:31:45 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-06-25 15:31:45 +0100 |
commit | 68ce98bc210e7023bb2421cafd251c368aec23be (patch) | |
tree | 0d03d753e7fd9784e8408937fc1965e0539f3dce /preproc/cmd/preprocmulti/main.go | |
parent | 5459fbca17efad20e433aeaa442df14831f8ac82 (diff) |
Remove 0.6 binarisation threshold option from preprocmulti
Diffstat (limited to 'preproc/cmd/preprocmulti/main.go')
-rw-r--r-- | preproc/cmd/preprocmulti/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preproc/cmd/preprocmulti/main.go b/preproc/cmd/preprocmulti/main.go index 71bf7d5..9f35017 100644 --- a/preproc/cmd/preprocmulti/main.go +++ b/preproc/cmd/preprocmulti/main.go @@ -22,7 +22,7 @@ func autowsize(bounds image.Rectangle) int { } func main() { - ksizes := []float64{0.2, 0.3, 0.4, 0.5, 0.6} + ksizes := []float64{0.2, 0.3, 0.4, 0.5} flag.Usage = func() { fmt.Fprintf(os.Stderr, "Usage: preprocmulti [-bt bintype] [-bw winsize] [-m minperc] [-nowipe] [-ws wipesize] inimg outbase\n") |