diff options
author | Nick White <git@njw.name> | 2020-04-14 12:03:13 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2020-04-14 12:03:13 +0100 |
commit | d715fb145e1402c6fa2dbc02cebb323e8b6ea976 (patch) | |
tree | 05a6250d5b6a74bcf2d9998b51257ac18883c05f | |
parent | 0b999849a72a49c2d0b84c657705800a99242064 (diff) |
Improve documentationv0.1.1
-rw-r--r-- | integralimg.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/integralimg.go b/integralimg.go index 007e2c6..d9bd38f 100644 --- a/integralimg.go +++ b/integralimg.go @@ -2,6 +2,10 @@ // Use of this source code is governed by the GPLv3 // license that can be found in the LICENSE file. +// integralimg is a package for processing integral images, aka +// summed area tables. These are structures which precompute the +// sum of pixels to the left and above each pixel, which can make +// several common image processing operations much faster. package integralimg import ( |