diff options
author | Nick White <git@njw.name> | 2020-08-03 16:36:57 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2020-08-03 16:36:57 +0100 |
commit | 356b839c5f1ddfea0f0a380c6871b36bb1f7ec00 (patch) | |
tree | ced51352888dd5b2d72a2d2ab24d28bb78069545 /integralimg.go | |
parent | 55560bf16ee70335dcb72f80a3f6dacfb88d7ae8 (diff) |
Add some testable examples
Diffstat (limited to 'integralimg.go')
-rw-r--r-- | integralimg.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/integralimg.go b/integralimg.go index 3585703..6cf3a25 100644 --- a/integralimg.go +++ b/integralimg.go @@ -7,14 +7,6 @@ // sum of pixels to the left and above each pixel, which can make // several common image processing operations much faster. // -// integralimg.Image and integralimg.SqImage fully implement the -// image.Image and image/draw.Draw interfaces, and hence can be -// used like so: -// -// img, _, err := image.Decode(f) -// integral := integralimg.NewImage(b) -// draw.Draw(integral, b, img, b.Min, draw.Src) -// // The Sum(), Mean() and MeanStdDev() functions provided for the // integral versions of Images significantly speed up many common // image processing operations. |