1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// 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()
integral := NewImage(image.Rect(0, 0, b.Dx(), b.Dy()))
draw.Draw(integral, b, img, b.Min, draw.Src)
if !imgsequal(img, integral) {
t.Errorf("Read png image differs to integral image\n")
}
}
func TestSqFromPNG(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()
integral := NewSqImage(image.Rect(0, 0, b.Dx(), b.Dy()))
draw.Draw(integral, b, img, b.Min, draw.Src)
if !imgsequal(img, integral) {
t.Errorf("Read png image differs to square integral image\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
}
|