From 8d8d599e1d08f5514e5761ee2ce5fd640203ae12 Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 18 Aug 2020 16:57:39 +0100 Subject: Update preproc to v0.4.0 to enable vertical wiping --- cmd/bookpipeline/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') 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 -- cgit v1.2.1-24-ge1ad