forked from disintegration/imaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scanner_test.go
229 lines (212 loc) · 5.26 KB
/
scanner_test.go
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package imaging
import (
"fmt"
"image"
"image/color"
"image/color/palette"
"image/draw"
"testing"
)
func TestScanner(t *testing.T) {
rect := image.Rect(-1, -1, 15, 15)
colors := palette.Plan9
testCases := []struct {
name string
img image.Image
}{
{
name: "NRGBA",
img: makeNRGBAImage(rect, colors),
},
{
name: "NRGBA64",
img: makeNRGBA64Image(rect, colors),
},
{
name: "RGBA",
img: makeRGBAImage(rect, colors),
},
{
name: "RGBA64",
img: makeRGBA64Image(rect, colors),
},
{
name: "Gray",
img: makeGrayImage(rect, colors),
},
{
name: "Gray16",
img: makeGray16Image(rect, colors),
},
{
name: "YCbCr-444",
img: makeYCbCrImage(rect, colors, image.YCbCrSubsampleRatio444),
},
{
name: "YCbCr-422",
img: makeYCbCrImage(rect, colors, image.YCbCrSubsampleRatio422),
},
{
name: "YCbCr-420",
img: makeYCbCrImage(rect, colors, image.YCbCrSubsampleRatio420),
},
{
name: "YCbCr-440",
img: makeYCbCrImage(rect, colors, image.YCbCrSubsampleRatio440),
},
{
name: "YCbCr-410",
img: makeYCbCrImage(rect, colors, image.YCbCrSubsampleRatio410),
},
{
name: "YCbCr-411",
img: makeYCbCrImage(rect, colors, image.YCbCrSubsampleRatio411),
},
{
name: "Paletted",
img: makePalettedImage(rect, colors),
},
{
name: "Alpha",
img: makeAlphaImage(rect, colors),
},
{
name: "Alpha16",
img: makeAlpha16Image(rect, colors),
},
{
name: "Generic",
img: makeGenericImage(rect, colors),
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
r := tc.img.Bounds()
s := newScanner(tc.img)
for y := r.Min.Y; y < r.Max.Y; y++ {
buf := make([]byte, r.Dx()*4)
s.scan(0, y-r.Min.Y, r.Dx(), y+1-r.Min.Y, buf)
wantBuf := readRow(tc.img, y)
if !compareBytes(buf, wantBuf, 1) {
fmt.Println(tc.img)
t.Fatalf("scan horizontal line (y=%d): got %v want %v", y, buf, wantBuf)
}
}
for x := r.Min.X; x < r.Max.X; x++ {
buf := make([]byte, r.Dy()*4)
s.scan(x-r.Min.X, 0, x+1-r.Min.X, r.Dy(), buf)
wantBuf := readColumn(tc.img, x)
if !compareBytes(buf, wantBuf, 1) {
t.Fatalf("scan vertical line (x=%d): got %v want %v", x, buf, wantBuf)
}
}
})
}
}
func makeYCbCrImage(rect image.Rectangle, colors []color.Color, sr image.YCbCrSubsampleRatio) *image.YCbCr {
img := image.NewYCbCr(rect, sr)
j := 0
for y := rect.Min.Y; y < rect.Max.Y; y++ {
for x := rect.Min.X; x < rect.Max.X; x++ {
iy := img.YOffset(x, y)
ic := img.COffset(x, y)
c := color.NRGBAModel.Convert(colors[j]).(color.NRGBA)
img.Y[iy], img.Cb[ic], img.Cr[ic] = color.RGBToYCbCr(c.R, c.G, c.B)
j++
}
}
return img
}
func makeNRGBAImage(rect image.Rectangle, colors []color.Color) *image.NRGBA {
img := image.NewNRGBA(rect)
fillDrawImage(img, colors)
return img
}
func makeNRGBA64Image(rect image.Rectangle, colors []color.Color) *image.NRGBA64 {
img := image.NewNRGBA64(rect)
fillDrawImage(img, colors)
return img
}
func makeRGBAImage(rect image.Rectangle, colors []color.Color) *image.RGBA {
img := image.NewRGBA(rect)
fillDrawImage(img, colors)
return img
}
func makeRGBA64Image(rect image.Rectangle, colors []color.Color) *image.RGBA64 {
img := image.NewRGBA64(rect)
fillDrawImage(img, colors)
return img
}
func makeGrayImage(rect image.Rectangle, colors []color.Color) *image.Gray {
img := image.NewGray(rect)
fillDrawImage(img, colors)
return img
}
func makeGray16Image(rect image.Rectangle, colors []color.Color) *image.Gray16 {
img := image.NewGray16(rect)
fillDrawImage(img, colors)
return img
}
func makePalettedImage(rect image.Rectangle, colors []color.Color) *image.Paletted {
img := image.NewPaletted(rect, colors)
fillDrawImage(img, colors)
return img
}
func makeAlphaImage(rect image.Rectangle, colors []color.Color) *image.Alpha {
img := image.NewAlpha(rect)
fillDrawImage(img, colors)
return img
}
func makeAlpha16Image(rect image.Rectangle, colors []color.Color) *image.Alpha16 {
img := image.NewAlpha16(rect)
fillDrawImage(img, colors)
return img
}
func makeGenericImage(rect image.Rectangle, colors []color.Color) image.Image {
img := image.NewRGBA(rect)
fillDrawImage(img, colors)
type genericImage struct{ *image.RGBA }
return &genericImage{img}
}
func fillDrawImage(img draw.Image, colors []color.Color) {
colorsNRGBA := make([]color.NRGBA, len(colors))
for i, c := range colors {
nrgba := color.NRGBAModel.Convert(c).(color.NRGBA)
nrgba.A = uint8(i % 256)
colorsNRGBA[i] = nrgba
}
rect := img.Bounds()
i := 0
for y := rect.Min.Y; y < rect.Max.Y; y++ {
for x := rect.Min.X; x < rect.Max.X; x++ {
img.Set(x, y, colorsNRGBA[i])
i++
}
}
}
func readRow(img image.Image, y int) []uint8 {
row := make([]byte, img.Bounds().Dx()*4)
i := 0
for x := img.Bounds().Min.X; x < img.Bounds().Max.X; x++ {
c := color.NRGBAModel.Convert(img.At(x, y)).(color.NRGBA)
row[i+0] = c.R
row[i+1] = c.G
row[i+2] = c.B
row[i+3] = c.A
i += 4
}
return row
}
func readColumn(img image.Image, x int) []uint8 {
column := make([]byte, img.Bounds().Dy()*4)
i := 0
for y := img.Bounds().Min.Y; y < img.Bounds().Max.Y; y++ {
c := color.NRGBAModel.Convert(img.At(x, y)).(color.NRGBA)
column[i+0] = c.R
column[i+1] = c.G
column[i+2] = c.B
column[i+3] = c.A
i += 4
}
return column
}