diff options
Diffstat (limited to 'preproc/wipesides.go')
-rw-r--r-- | preproc/wipesides.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preproc/wipesides.go b/preproc/wipesides.go index 5291d00..04bfa11 100644 --- a/preproc/wipesides.go +++ b/preproc/wipesides.go @@ -12,7 +12,7 @@ import ( // returns the proportion of the given window that is black pixels func proportion(i integralimg.I, x int, size int) float64 { - w := i.GetVerticalWindow(x, size) + w := i.GetVerticalWindow(x, size) return w.Proportion() } |