summaryrefslogtreecommitdiff
path: root/util.go
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-04-14 11:37:57 +0100
committerNick White <git@njw.name>2020-04-14 11:37:57 +0100
commit014af190c64b2fecbf5d69e9a13e45858e830e81 (patch)
treec8398b8b2b224f13309156b0554c7aa80bccfdc8 /util.go
parent822ce40a7d708ed44d6e638e2e25db9261254d13 (diff)
Improve documentation throughout
Diffstat (limited to 'util.go')
-rw-r--r--util.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/util.go b/util.go
index 3ce4f84..f0864e9 100644
--- a/util.go
+++ b/util.go
@@ -10,10 +10,10 @@ import (
"math"
)
-// TODO: name better; maybe verb, x-er
-// TODO: implement these for regular image, and use them to make
-// image functions generic for integral and non- images
type UsefulImg interface {
+ // TODO: name better; maybe verb, x-er
+ // TODO: implement these for regular image, and use them to make
+ // image functions generic for integral and non- images
MeanWindow()
MeanStdDevWindow()
}