summaryrefslogtreecommitdiff
path: root/cmd/bookpipeline
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-07-20 11:49:12 +0100
committerNick White <git@njw.name>2020-07-20 11:49:12 +0100
commit9608fbaa5a1a99d039b8af0f2ea3dc8670e239e8 (patch)
treeb2f7be08fd3019916cea788dacb1f9670fa5c349 /cmd/bookpipeline
parent8aa2d713d511baeaa94472e238e46c6d02ac9332 (diff)
Update preproc to v0.1.4 to take advantage of vertical wiping parameters, and change WipeFile() to take advantage of themv0.2.5
Diffstat (limited to 'cmd/bookpipeline')
-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 16ce596..f2a06cc 100644
--- a/cmd/bookpipeline/main.go
+++ b/cmd/bookpipeline/main.go
@@ -177,7 +177,7 @@ func wipe(towipe chan string, up chan string, errc chan error, logger *log.Logge
s := strings.Split(path, ".")
base := strings.Join(s[:len(s)-1], "")
outpath := base + "_bin0.0.png"
- err := preproc.WipeFile(path, outpath, 5, 0.03, 30)
+ err := preproc.WipeFile(path, outpath, 5, 0.03, 30, 120, 0.005, 30)
if err != nil {
for range towipe {
} // consume the rest of the receiving channel so it isn't blocked