summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-08-18 16:57:39 +0100
committerNick White <git@njw.name>2020-08-18 16:57:39 +0100
commit8d8d599e1d08f5514e5761ee2ce5fd640203ae12 (patch)
tree3a2df1f5439235eda6ad7b297f51ab17d841e2bf /cmd
parent01031926ebb5a3c6649c5ff3fa1a27c8f324d5d3 (diff)
Update preproc to v0.4.0 to enable vertical wiping
Diffstat (limited to 'cmd')
-rw-r--r--cmd/bookpipeline/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bookpipeline/main.go b/cmd/bookpipeline/main.go
index 9bc3378..a36e7cb 100644
--- a/cmd/bookpipeline/main.go
+++ b/cmd/bookpipeline/main.go
@@ -178,7 +178,7 @@ func upAndQueue(c chan string, done chan bool, toQueue string, conn Pipeliner, b
func preprocess(pre chan string, up chan string, errc chan error, logger *log.Logger) {
for path := range pre {
logger.Println("Preprocessing", path)
- done, err := preproc.PreProcMulti(path, []float64{0.1, 0.2, 0.4, 0.5}, "binary", 0, true, 5, 30)
+ done, err := preproc.PreProcMulti(path, []float64{0.1, 0.2, 0.4, 0.5}, "binary", 0, true, 5, 30, 120, 30)
if err != nil {
for range pre {
} // consume the rest of the receiving channel so it isn't blocked