diff options
Diffstat (limited to 'preproc/sauvola_test.go')
-rw-r--r-- | preproc/sauvola_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/preproc/sauvola_test.go b/preproc/sauvola_test.go index 5582941..deefb96 100644 --- a/preproc/sauvola_test.go +++ b/preproc/sauvola_test.go @@ -1,6 +1,7 @@ package preproc import ( + "flag" "fmt" "image" "image/png" @@ -9,6 +10,9 @@ import ( ) func TestBinarization(t *testing.T) { + var slow = flag.Bool("slow", false, "include slow tests") + var update = flag.Bool("updatesauvola", false, "update golden files") + cases := []struct { name string orig string |