summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-07-23 13:54:53 +0100
committerNick White <git@njw.name>2020-07-23 13:54:53 +0100
commit1ae8e38ba4d9c141533a5a44e9fc1c470f4b29ff (patch)
tree79cefd954d2e8b294d89d8e4fa971b1370d8a542
parent43d0e6116e25578d1b76cf6ed8c93cc73f663d05 (diff)
Add first test
-rw-r--r--integralimg_test.go60
-rw-r--r--testdata/in.pngbin0 -> 9123 bytes
2 files changed, 60 insertions, 0 deletions
diff --git a/integralimg_test.go b/integralimg_test.go
new file mode 100644
index 0000000..3bc8dd6
--- /dev/null
+++ b/integralimg_test.go
@@ -0,0 +1,60 @@
+// Copyright 2020 Nick White.
+// Use of this source code is governed by the GPLv3
+// license that can be found in the LICENSE file.
+
+package integralimg
+
+import (
+ "image"
+ "image/draw"
+ _ "image/png"
+ "os"
+ "testing"
+)
+
+func TestFromPNG(t *testing.T) {
+ f, err := os.Open("testdata/in.png")
+ if err != nil {
+ t.Fatalf("Could not open file %s: %v\n", "testdata/in.png", err)
+ }
+ defer f.Close()
+ img, _, err := image.Decode(f)
+ if err != nil {
+ t.Fatalf("Could not decode image: %v\n", err)
+ }
+ b := img.Bounds()
+ gray := image.NewGray(image.Rect(0, 0, b.Dx(), b.Dy()))
+ draw.Draw(gray, b, img, b.Min, draw.Src)
+
+ integral := ToIntegralImg(gray)
+
+ if !imgsequal(img, integral) {
+ t.Errorf("Read png image differs to integral\n")
+ }
+}
+
+func imgsequal(img1, img2 image.Image) bool {
+ b := img1.Bounds()
+ if !b.Eq(img2.Bounds()) {
+ return false
+ }
+ for y := b.Min.Y; y < b.Max.Y; y++ {
+ for x := b.Min.X; x < b.Max.X; x++ {
+ r0, g0, b0, a0 := img1.At(x, y).RGBA()
+ r1, g1, b1, a1 := img2.At(x, y).RGBA()
+ if r0 != r1 {
+ return false
+ }
+ if g0 != g1 {
+ return false
+ }
+ if b0 != b1 {
+ return false
+ }
+ if a0 != a1 {
+ return false
+ }
+ }
+ }
+ return true
+}
diff --git a/testdata/in.png b/testdata/in.png
new file mode 100644
index 0000000..8f90f19
--- /dev/null
+++ b/testdata/in.png
Binary files differ