forked from hybridgroup/gocv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calib3d_test.go
401 lines (311 loc) · 9.36 KB
/
calib3d_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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
package gocv
import (
"fmt"
"image"
"image/color"
"math"
"testing"
)
func TestFisheyeUndistorImage(t *testing.T) {
img := IMRead("images/fisheye_sample.jpg", IMReadUnchanged)
if img.Empty() {
t.Error("Invalid read of Mat test")
return
}
defer img.Close()
dest := NewMat()
defer dest.Close()
k := NewMatWithSize(3, 3, MatTypeCV64F)
defer k.Close()
k.SetDoubleAt(0, 0, 689.21)
k.SetDoubleAt(0, 1, 0)
k.SetDoubleAt(0, 2, 1295.56)
k.SetDoubleAt(1, 0, 0)
k.SetDoubleAt(1, 1, 690.48)
k.SetDoubleAt(1, 2, 942.17)
k.SetDoubleAt(2, 0, 0)
k.SetDoubleAt(2, 1, 0)
k.SetDoubleAt(2, 2, 1)
d := NewMatWithSize(1, 4, MatTypeCV64F)
defer d.Close()
d.SetDoubleAt(0, 0, 0)
d.SetDoubleAt(0, 1, 0)
d.SetDoubleAt(0, 2, 0)
d.SetDoubleAt(0, 3, 0)
FisheyeUndistortImage(img, &dest, k, d)
if dest.Empty() {
t.Error("final image is empty")
return
}
// IMWrite("images/fisheye_sample-u.jpg", dest)
}
func TestFisheyeUndistorImageWithParams(t *testing.T) {
img := IMRead("images/fisheye_sample.jpg", IMReadUnchanged)
if img.Empty() {
t.Error("Invalid read of Mat test")
return
}
defer img.Close()
dest := NewMat()
defer dest.Close()
k := NewMatWithSize(3, 3, MatTypeCV64F)
defer k.Close()
k.SetDoubleAt(0, 0, 689.21)
k.SetDoubleAt(0, 1, 0)
k.SetDoubleAt(0, 2, 1295.56)
k.SetDoubleAt(1, 0, 0)
k.SetDoubleAt(1, 1, 690.48)
k.SetDoubleAt(1, 2, 942.17)
k.SetDoubleAt(2, 0, 0)
k.SetDoubleAt(2, 1, 0)
k.SetDoubleAt(2, 2, 1)
d := NewMatWithSize(1, 4, MatTypeCV64F)
defer d.Close()
d.SetDoubleAt(0, 0, 0)
d.SetDoubleAt(0, 1, 0)
d.SetDoubleAt(0, 2, 0)
d.SetDoubleAt(0, 3, 0)
knew := NewMat()
defer knew.Close()
k.CopyTo(&knew)
knew.SetDoubleAt(0, 0, 0.4*k.GetDoubleAt(0, 0))
knew.SetDoubleAt(1, 1, 0.4*k.GetDoubleAt(1, 1))
size := image.Point{dest.Rows(), dest.Cols()}
FisheyeUndistortImageWithParams(img, &dest, k, d, knew, size)
if dest.Empty() {
t.Error("final image is empty")
return
}
// IMWrite("images/fisheye_sample-up.jpg", dest)
}
func TestInitUndistortRectifyMap(t *testing.T) {
img := IMRead("images/distortion.jpg", IMReadUnchanged)
if img.Empty() {
t.Error("Invalid read of Mat test")
return
}
defer img.Close()
dest := NewMat()
defer dest.Close()
k := NewMatWithSize(3, 3, MatTypeCV64F)
defer k.Close()
k.SetDoubleAt(0, 0, 842.0261028)
k.SetDoubleAt(0, 1, 0)
k.SetDoubleAt(0, 2, 667.7569792)
k.SetDoubleAt(1, 0, 0)
k.SetDoubleAt(1, 1, 707.3668897)
k.SetDoubleAt(1, 2, 385.56476464)
k.SetDoubleAt(2, 0, 0)
k.SetDoubleAt(2, 1, 0)
k.SetDoubleAt(2, 2, 1)
d := NewMatWithSize(1, 5, MatTypeCV64F)
defer d.Close()
d.SetDoubleAt(0, 0, -3.65584802e-01)
d.SetDoubleAt(0, 1, 1.41555815e-01)
d.SetDoubleAt(0, 2, -2.62985819e-03)
d.SetDoubleAt(0, 3, 2.05841873e-04)
d.SetDoubleAt(0, 4, -2.35021914e-02)
//FisheyeUndistortImage(img, &dest, k, d)
//img.Reshape()
newC, roi := GetOptimalNewCameraMatrixWithParams(k, d, image.Point{X: img.Cols(), Y: img.Rows()}, (float64)(1), image.Point{X: img.Cols(), Y: img.Rows()}, false)
if newC.Empty() {
t.Error("final image is empty")
return
}
fmt.Printf("roi:%+v\n", roi)
defer newC.Close()
r := NewMat()
defer r.Close()
mapx := NewMat()
defer mapx.Close()
mapy := NewMat()
defer mapy.Close()
//dest := NewMat()
InitUndistortRectifyMap(k, d, r, newC, image.Point{X: img.Cols(), Y: img.Rows()}, 5, mapx, mapy)
Remap(img, &dest, &mapx, &mapy, InterpolationDefault, BorderConstant, color.RGBA{0, 0, 0, 0})
flg := IMWrite("images/distortion-correct.jpg", dest)
if !flg {
t.Error("IMWrite failed")
}
}
func TestUndistort(t *testing.T) {
img := IMRead("images/distortion.jpg", IMReadUnchanged)
if img.Empty() {
t.Error("Invalid read of Mat test")
return
}
defer img.Close()
dest := img.Clone()
defer dest.Close()
k := NewMatWithSize(3, 3, MatTypeCV64F)
defer k.Close()
k.SetDoubleAt(0, 0, 689.21)
k.SetDoubleAt(0, 1, 0)
k.SetDoubleAt(0, 2, 1295.56)
k.SetDoubleAt(1, 0, 0)
k.SetDoubleAt(1, 1, 690.48)
k.SetDoubleAt(1, 2, 942.17)
k.SetDoubleAt(2, 0, 0)
k.SetDoubleAt(2, 1, 0)
k.SetDoubleAt(2, 2, 1)
d := NewMatWithSize(1, 4, MatTypeCV64F)
defer d.Close()
d.SetDoubleAt(0, 0, 0)
d.SetDoubleAt(0, 1, 0)
d.SetDoubleAt(0, 2, 0)
d.SetDoubleAt(0, 3, 0)
knew := NewMat()
defer knew.Close()
k.CopyTo(&knew)
knew.SetDoubleAt(0, 0, 0.5*k.GetDoubleAt(0, 0))
knew.SetDoubleAt(1, 1, 0.5*k.GetDoubleAt(1, 1))
Undistort(img, &dest, k, d, knew)
if dest.Empty() {
t.Error("final image is empty")
return
}
//IMWrite("images/distortion_up.jpg", dest)
}
func TestUndistortPoint(t *testing.T) {
k := NewMatWithSize(3, 3, MatTypeCV64F)
defer k.Close()
k.SetDoubleAt(0, 0, 1094.7249578198823)
k.SetDoubleAt(0, 1, 0)
k.SetDoubleAt(0, 2, 959.4907612030962)
k.SetDoubleAt(1, 0, 0)
k.SetDoubleAt(1, 1, 1094.9945708128778)
k.SetDoubleAt(1, 2, 536.4566143451868)
k.SetDoubleAt(2, 0, 0)
k.SetDoubleAt(2, 1, 0)
k.SetDoubleAt(2, 2, 1)
d := NewMatWithSize(1, 4, MatTypeCV64F)
defer d.Close()
d.SetDoubleAt(0, 0, -0.05207412392075069)
d.SetDoubleAt(0, 1, -0.089168300192224)
d.SetDoubleAt(0, 2, 0.10465607695792184)
d.SetDoubleAt(0, 3, -0.045693446831115585)
r := NewMat()
defer r.Close()
// transform 3 points in one go
src := NewMatWithSize(3, 1, MatTypeCV64FC2)
defer src.Close()
dst := NewMatWithSize(3, 1, MatTypeCV64FC2)
defer dst.Close()
// This camera matrix is 1920x1080. Points where x < 960 and y < 540 should move toward the top left (x and y get smaller)
// The centre point should be mostly unchanged
// Points where x > 960 and y > 540 should move toward the bottom right (x and y get bigger)
// The index being used for col here is actually the channel (i.e. the point's x/y dimensions)
// (since there's only 1 column so the formula: (colNumber * numChannels + channelNumber) reduces to
// (0 * 2) + channelNumber
// so col = 0 is the x coordinate and col = 1 is the y coordinate
src.SetDoubleAt(0, 0, 480)
src.SetDoubleAt(0, 1, 270)
src.SetDoubleAt(1, 0, 960)
src.SetDoubleAt(1, 1, 540)
src.SetDoubleAt(2, 0, 1920)
src.SetDoubleAt(2, 1, 1080)
UndistortPoints(src, &dst, k, d, r, k)
if dst.GetDoubleAt(0, 0) >= 480 || dst.GetDoubleAt(0, 1) >= 270 {
t.Error("undistortion expected top left point to move further up and left")
return
}
if math.Round(dst.GetDoubleAt(1, 0)) != 960 || math.Round(dst.GetDoubleAt(1, 1)) != 540 {
t.Error("undistortion expected centre point to be nearly unchanged")
return
}
if dst.GetDoubleAt(2, 0) != 1920 || dst.GetDoubleAt(2, 1) != 1080 {
t.Error("undistortion expected bottom right corner to be unchanged")
return
}
}
func TestFisheyeUndistortPoint(t *testing.T) {
k := NewMatWithSize(3, 3, MatTypeCV64F)
defer k.Close()
k.SetDoubleAt(0, 0, 1094.7249578198823)
k.SetDoubleAt(0, 1, 0)
k.SetDoubleAt(0, 2, 959.4907612030962)
k.SetDoubleAt(1, 0, 0)
k.SetDoubleAt(1, 1, 1094.9945708128778)
k.SetDoubleAt(1, 2, 536.4566143451868)
k.SetDoubleAt(2, 0, 0)
k.SetDoubleAt(2, 1, 0)
k.SetDoubleAt(2, 2, 1)
d := NewMatWithSize(1, 4, MatTypeCV64F)
defer d.Close()
d.SetDoubleAt(0, 0, -0.05207412392075069)
d.SetDoubleAt(0, 1, -0.089168300192224)
d.SetDoubleAt(0, 2, 0.10465607695792184)
d.SetDoubleAt(0, 3, -0.045693446831115585)
r := NewMat()
defer r.Close()
// transform 3 points in one go (X and Y values of points go in each channel)
src := NewMatWithSize(3, 1, MatTypeCV64FC2)
defer src.Close()
dst := NewMatWithSize(3, 1, MatTypeCV64FC2)
defer dst.Close()
// This camera matrix is 1920x1080. Points where x < 960 and y < 540 should move toward the top left (x and y get smaller)
// The centre point should be mostly unchanged
// Points where x > 960 and y > 540 should move toward the bottom right (x and y get bigger)
// The index being used for col here is actually the channel (i.e. the point's x/y dimensions)
// (since there's only 1 column so the formula: (colNumber * numChannels + channelNumber) reduces to
// (0 * 2) + channelNumber
// so col = 0 is the x coordinate and col = 1 is the y coordinate
src.SetDoubleAt(0, 0, 480)
src.SetDoubleAt(0, 1, 270)
src.SetDoubleAt(1, 0, 960)
src.SetDoubleAt(1, 1, 540)
src.SetDoubleAt(2, 0, 1440)
src.SetDoubleAt(2, 1, 810)
kNew := NewMat()
defer kNew.Close()
k.CopyTo(&kNew)
kNew.SetDoubleAt(0, 0, 0.4*k.GetDoubleAt(0, 0))
kNew.SetDoubleAt(1, 1, 0.4*k.GetDoubleAt(1, 1))
imgSize := image.Point{X: 1920, Y: 1080}
EstimateNewCameraMatrixForUndistortRectify(k, d, imgSize, r, &kNew, 1, imgSize, 1)
FisheyeUndistortPoints(src, &dst, k, d, r, kNew)
if dst.GetDoubleAt(0, 0) == 0 {
t.Error("expected destination Mat to be populated")
}
}
func TestFindChessboard(t *testing.T) {
img := IMRead("images/chessboard_4x6.png", IMReadUnchanged)
if img.Empty() {
t.Error("Invalid read of chessboard image")
return
}
defer img.Close()
corners := NewMat()
defer corners.Close()
found := FindChessboardCorners(img, image.Point{X: 4, Y: 6}, &corners, 0)
if found == false {
t.Error("chessboard pattern not found")
return
}
if corners.Empty() {
t.Error("chessboard pattern not found")
return
}
}
func TestEstimateAffinePartial2D(t *testing.T) {
src := []Point2f{
{0, 0},
{10, 5},
{10, 10},
{5, 10},
}
dst := []Point2f{
{0, 0},
{10, 0},
{10, 10},
{0, 10},
}
m := EstimateAffinePartial2D(src, dst)
defer m.Close()
if m.Cols() != 3 {
t.Errorf("TestEstimateAffinePartial2D(): unexpected cols = %v, want = %v", m.Cols(), 3)
}
if m.Rows() != 2 {
t.Errorf("TestEstimateAffinePartial2D(): unexpected rows = %v, want = %v", m.Rows(), 2)
}
}