summaryrefslogtreecommitdiff
path: root/wipesides.go
diff options
context:
space:
mode:
Diffstat (limited to 'wipesides.go')
-rw-r--r--wipesides.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/wipesides.go b/wipesides.go
index 4af3204..ebfb24f 100644
--- a/wipesides.go
+++ b/wipesides.go
@@ -212,8 +212,8 @@ func WipeFile(inPath string, outPath string, hwsize int, hthresh float64, hmin i
gray := image.NewGray(image.Rect(0, 0, b.Dx(), b.Dy()))
draw.Draw(gray, b, img, b.Min, draw.Src)
- hclean := Wipe(gray, hwsize, hthresh, hmin)
- clean := VWipe(hclean, vwsize, vthresh, vmin)
+ vclean := VWipe(gray, vwsize, vthresh, vmin)
+ clean := Wipe(vclean, hwsize, hthresh, hmin)
f, err = os.Create(outPath)
if err != nil {