forked from hybridgroup/gocv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
objdetect_test.go
216 lines (181 loc) · 5.32 KB
/
objdetect_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
package gocv
import (
"image"
"image/color"
"testing"
)
func TestCascadeClassifier(t *testing.T) {
img := IMRead("images/face.jpg", IMReadColor)
if img.Empty() {
t.Error("Invalid Mat in CascadeClassifier test")
}
defer img.Close()
// load classifier to recognize faces
classifier := NewCascadeClassifier()
defer classifier.Close()
classifier.Load("data/haarcascade_frontalface_default.xml")
rects := classifier.DetectMultiScale(img)
if len(rects) != 1 {
t.Error("Error in TestCascadeClassifier test")
}
}
func TestCascadeClassifierWithParams(t *testing.T) {
img := IMRead("images/face.jpg", IMReadColor)
if img.Empty() {
t.Error("Invalid Mat in CascadeClassifierWithParams test")
}
defer img.Close()
// load classifier to recognize faces
classifier := NewCascadeClassifier()
defer classifier.Close()
classifier.Load("data/haarcascade_frontalface_default.xml")
rects := classifier.DetectMultiScaleWithParams(img, 1.1, 3, 0, image.Pt(0, 0), image.Pt(0, 0))
if len(rects) != 1 {
t.Errorf("Error in CascadeClassifierWithParams test: %v", len(rects))
}
}
func TestHOGDescriptor(t *testing.T) {
img := IMRead("images/face.jpg", IMReadColor)
if img.Empty() {
t.Error("Invalid Mat in HOGDescriptor test")
}
defer img.Close()
// load HOGDescriptor to recognize people
hog := NewHOGDescriptor()
defer hog.Close()
d := HOGDefaultPeopleDetector()
defer d.Close()
hog.SetSVMDetector(d)
rects := hog.DetectMultiScale(img)
if len(rects) != 1 {
t.Errorf("Error in TestHOGDescriptor test: %d", len(rects))
}
}
func TestHOGDescriptorWithParams(t *testing.T) {
img := IMRead("images/face.jpg", IMReadColor)
if img.Empty() {
t.Error("Invalid Mat in HOGDescriptorWithParams test")
}
defer img.Close()
// load HOGDescriptor to recognize people
hog := NewHOGDescriptor()
defer hog.Close()
d := HOGDefaultPeopleDetector()
defer d.Close()
hog.SetSVMDetector(d)
rects := hog.DetectMultiScaleWithParams(img, 0, image.Pt(0, 0), image.Pt(0, 0),
1.05, 2.0, false)
if len(rects) != 1 {
t.Errorf("Error in TestHOGDescriptorWithParams test: %d", len(rects))
}
}
func TestGroupRectangles(t *testing.T) {
rects := []image.Rectangle{
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 30, 30),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
image.Rect(10, 10, 35, 35),
}
results := GroupRectangles(rects, 1, 0.2)
if len(results) != 2 {
t.Errorf("Error in TestGroupRectangles test: %d", len(results))
}
}
func TestQRCodeDetector(t *testing.T) {
img := IMRead("images/qrcode.png", IMReadColor)
if img.Empty() {
t.Error("Invalid Mat in QRCodeDetector test")
}
defer img.Close()
// load QRCodeDetector to QR codes
detector := NewQRCodeDetector()
defer detector.Close()
bbox := NewMat()
qr := NewMat()
defer bbox.Close()
defer qr.Close()
res := detector.Detect(img, &bbox)
if !res {
t.Errorf("Error in TestQRCodeDetector test: res == false")
}
res2 := detector.Decode(img, bbox, &qr)
res3 := detector.DetectAndDecode(img, &bbox, &qr)
if res2 != res3 {
t.Errorf("Error in TestQRCodeDetector res2: %s != res3: %s", res2, res3)
}
// multi
img2 := IMRead("images/multi_qrcodes.png", IMReadColor)
defer img2.Close()
if img2.Empty() {
t.Error("Invalid Mat in QRCodeDetector test")
}
multiBox := NewMat()
defer multiBox.Close()
res4 := detector.DetectMulti(img2, &multiBox)
if !res4 {
t.Errorf("Error in TestQRCodeDetector Multi test: res == false")
}
if multiBox.Rows() != 2 {
t.Errorf("Error in TestQRCodeDetector Multi test: number of Rows = %d", multiBox.Rows())
}
multiBox2 := NewMat()
defer multiBox2.Close()
decoded := []string{}
qrCodes := make([]Mat, 0)
defer func() {
for _, q := range qrCodes {
q.Close()
}
}()
success := detector.DetectAndDecodeMulti(img2, &decoded, &multiBox2, &qrCodes)
if !success {
t.Errorf("Error in TestQRCodeDetector Multi test: returned false")
}
tmpPoints := NewMat()
defer tmpPoints.Close()
tmpQr := NewMat()
defer tmpQr.Close()
var tmpDecoded string
for i, s := range decoded {
tmpInput := padQr(&(qrCodes[i]))
defer tmpInput.Close()
tmpDecoded = detector.Decode(tmpInput, tmpPoints, &tmpQr)
if tmpDecoded != s {
t.Errorf("Error in TestQRCodeDetector Multi test: decoded straight QR code=%s, decoded[%d] =%s", tmpDecoded, i, s)
}
}
emptyMat := NewMatWithSize(100, 200, MatTypeCV8UC3)
success = detector.DetectAndDecodeMulti(emptyMat, &decoded, &multiBox2, &qrCodes)
if success {
t.Errorf("Error in TestQRCodeDetector Multi test: empty Mat returned sucess=true")
}
emptyMat.Close()
}
func padQr(qr *Mat) Mat {
l := 101
d := 10
L := l + 2*d
out := NewMatWithSizeFromScalar(NewScalar(255, 255, 255, 255), L, L, MatTypeCV8UC3)
qrCodes0 := NewMat()
defer qrCodes0.Close()
qr.ConvertTo(&qrCodes0, MatTypeCV8UC3)
Resize(qrCodes0, &qrCodes0, image.Point{L, L}, 0, 0, InterpolationArea)
CopyMakeBorder(qrCodes0, &out, d, d, d, d, BorderConstant, color.RGBA{255, 255, 255, 255})
return out
}