diff options
author | Nick White <git@njw.name> | 2019-03-26 17:23:33 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-03-26 17:23:33 +0000 |
commit | 8af4c7e56e0336f1e70a0e079c79ee7459d92519 (patch) | |
tree | 4547e6c029a7063c3fddd6349bc4bbb80364fab3 /binarize/sauvola.go | |
parent | f20982f465ee4735caf5b0ebc3c57af31ee90e75 (diff) |
Add zeroinv option for binarize command
Diffstat (limited to 'binarize/sauvola.go')
-rw-r--r-- | binarize/sauvola.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binarize/sauvola.go b/binarize/sauvola.go index ca0acf0..ee773ba 100644 --- a/binarize/sauvola.go +++ b/binarize/sauvola.go @@ -28,7 +28,7 @@ func Sauvola(img *image.Gray, ksize float64, windowsize int) *image.Gray { } // Implements Sauvola's algorithm using Integral Images, see paper -// "Effcient Implementation of Local Adaptive Thresholding Techniques Using Integral Images" +// "Efficient Implementation of Local Adaptive Thresholding Techniques Using Integral Images" // and // https://stackoverflow.com/questions/13110733/computing-image-integral func IntegralSauvola(img *image.Gray, ksize float64, windowsize int) *image.Gray { |