From cfbecc747c3db15c307168e8b5baa24c80ad7f35 Mon Sep 17 00:00:00 2001 From: Nick White Date: Fri, 6 Nov 2020 16:19:31 +0000 Subject: Add docs links to packages on adaptive binarisation page --- content/posts/adaptive-binarisation/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'content') diff --git a/content/posts/adaptive-binarisation/index.md b/content/posts/adaptive-binarisation/index.md index 46316f2..507fa3c 100644 --- a/content/posts/adaptive-binarisation/index.md +++ b/content/posts/adaptive-binarisation/index.md @@ -90,12 +90,12 @@ So, we wrote a Go package which does Sauvola binarisation, which contains both standalone command line tools and can be used as a package in your own Go projects. The same package contains some other image preprocessing functionality, so the package is called -[rescribe.xyz/preproc](https://rescribe.xyz/preproc). The command -line binarisation tool in the package is *binarize*, and the -relevant Go functions are Sauvola() and IntegralSauvola(). +[rescribe.xyz/preproc](https://rescribe.xyz/preproc) ([docs](https://pkg.go.dev/rescribe.xyz/preproc)). +The command line binarisation tool in the package is *binarize*, and +the relevant Go functions are Sauvola() and IntegralSauvola(). The Integral Image support is provided by another package we wrote, -[rescribe.xyz/integralimg](https://rescribe.xyz/integralimg), which -is general purpose and has a test suite, so will also be useful for -other image processing tools which require calculating the mean or -standard deviation for different areas of an image. +[rescribe.xyz/integral](https://rescribe.xyz/integral) ([docs](https://pkg.go.dev/rescribe.xyz/integral)), +which will also be useful for other image processing tools which +require calculating the mean or standard deviation for different +areas of an image. -- cgit v1.2.1-24-ge1ad