summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-11-06 16:29:45 +0000
committerNick White <git@njw.name>2020-11-06 16:29:45 +0000
commitd4a0c471193a33da0f5276b7b8175c999f68960d (patch)
tree76faca5c8df4b416484edb45087064a61bc3e4d4
parentcfbecc747c3db15c307168e8b5baa24c80ad7f35 (diff)
Update integralimg->integral in tools overview, and add a line at the end of adaptive binarisation
-rw-r--r--content/posts/adaptive-binarisation/index.md3
-rw-r--r--content/posts/tool-overview/index.md2
2 files changed, 3 insertions, 2 deletions
diff --git a/content/posts/adaptive-binarisation/index.md b/content/posts/adaptive-binarisation/index.md
index 507fa3c..4d0dfd7 100644
--- a/content/posts/adaptive-binarisation/index.md
+++ b/content/posts/adaptive-binarisation/index.md
@@ -98,4 +98,5 @@ The Integral Image support is provided by another package we wrote,
[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.
+areas of an image. It includes tests and examples, so should be
+easy to pick up and use for your own projects.
diff --git a/content/posts/tool-overview/index.md b/content/posts/tool-overview/index.md
index ecaaa06..2a87649 100644
--- a/content/posts/tool-overview/index.md
+++ b/content/posts/tool-overview/index.md
@@ -66,7 +66,7 @@ preproc is a package of image preprocessing tools which we use to prepare
page images for OCR. They are designed to be very fast, and to work well
even in the common (for us) case of weird and dirty pages which have been
scanned badly. Many of the operations take advantage of our
-[integralimg](https://rescribe.xyz/integralimg) ([docs](https://pkg.go.dev/rescribe.xyz/integralimg))
+[integral](https://rescribe.xyz/integral) ([docs](https://pkg.go.dev/rescribe.xyz/integral))
package, which uses clever mathematics to make the image operations very
fast.