@@ -2121,7 +2121,7 @@ def test_find_fundamental_mat_lmeds
2121
2121
2122
2122
# default
2123
2123
[ CvMat . find_fundamental_mat_lmeds ( mat1 , mat2 , :with_status => false ,
2124
- :maximum_distance => 1.0 , :desirable_level => 0.99 ) ,
2124
+ :maximum_distance => 1.0 , :desirable_level => 0.99 ) ,
2125
2125
CvMat . find_fundamental_mat_lmeds ( mat1 , mat2 ) ] . each { |f_mat |
2126
2126
assert_equal ( 3 , f_mat . rows )
2127
2127
assert_equal ( 3 , f_mat . cols )
@@ -2271,7 +2271,7 @@ def test_find_fundamental_mat
2271
2271
}
2272
2272
2273
2273
[ CvMat . find_fundamental_mat ( mat1 , mat2 , CV_FM_RANSAC , :with_status => false ,
2274
- :maximum_distance => 1.0 , :desirable_level => 0.99 ) ,
2274
+ :maximum_distance => 1.0 , :desirable_level => 0.99 ) ,
2275
2275
CvMat . find_fundamental_mat ( mat1 , mat2 , CV_FM_RANSAC ) ] . each { |f_mat |
2276
2276
assert_equal ( 3 , f_mat . rows )
2277
2277
assert_equal ( 3 , f_mat . cols )
@@ -2317,7 +2317,7 @@ def test_find_fundamental_mat
2317
2317
}
2318
2318
2319
2319
[ CvMat . find_fundamental_mat ( mat1 , mat2 , CV_FM_LMEDS , :with_status => false ,
2320
- :maximum_distance => 1.0 , :desirable_level => 0.99 ) ,
2320
+ :maximum_distance => 1.0 , :desirable_level => 0.99 ) ,
2321
2321
CvMat . find_fundamental_mat ( mat1 , mat2 , CV_FM_LMEDS ) ] . each { |f_mat |
2322
2322
assert_equal ( 3 , f_mat . rows )
2323
2323
assert_equal ( 3 , f_mat . cols )
@@ -2348,5 +2348,97 @@ def test_find_fundamental_mat
2348
2348
assert_in_delta ( val , status [ i ] [ 0 ] , 1.0e-5 )
2349
2349
}
2350
2350
end
2351
+
2352
+ def test_compute_correspond_epilines
2353
+ test_func = lambda { |mat1 , mat2 , f_mat_arr , num_points |
2354
+ f_mat = CvMat . new ( 3 , 3 , CV_64F , 1 )
2355
+ f_mat_arr . each_with_index { |a , i |
2356
+ f_mat [ i ] = CvScalar . new ( a )
2357
+ }
2358
+
2359
+ line = CvMat . compute_correspond_epilines ( mat1 , 1 , f_mat )
2360
+ assert_equal ( num_points , line . rows )
2361
+ assert_equal ( 3 , line . cols )
2362
+
2363
+ expected = [ [ -0.221257 , -0.975215 , 6.03758 ] ,
2364
+ [ 0.359337 , -0.933208 , -3.61419 ] ,
2365
+ [ 0.958304 , -0.28575 , -15.0573 ] ,
2366
+ [ 0.73415 , -0.678987 , -10.4037 ] ,
2367
+ [ 0.0208539 , -0.999783 , 2.11625 ] ,
2368
+ [ 0.284451 , -0.958691 , -2.31993 ] ,
2369
+ [ 0.624647 , -0.780907 , -8.35208 ] ,
2370
+ [ 0.618494 , -0.785789 , -8.23888 ] ,
2371
+ [ 0.766694 , -0.642012 , -11.0298 ] ,
2372
+ [ 0.700293 , -0.713855 , -9.76109 ] ]
2373
+
2374
+ expected . size . times { |i |
2375
+ assert_in_delta ( expected [ i ] [ 0 ] , line [ i , 0 ] [ 0 ] , 1.0e-3 )
2376
+ assert_in_delta ( expected [ i ] [ 1 ] , line [ i , 1 ] [ 0 ] , 1.0e-3 )
2377
+ assert_in_delta ( expected [ i ] [ 2 ] , line [ i , 2 ] [ 0 ] , 1.0e-3 )
2378
+ }
2379
+
2380
+ assert_raise ( ArgumentError ) {
2381
+ m = CvMat . new ( 10 , 10 , CV_32F , 1 )
2382
+ CvMat . compute_correspond_epilines ( m , 1 , f_mat )
2383
+ }
2384
+ }
2385
+
2386
+ num_points = 10
2387
+ # input points are Nx2 matrix
2388
+ points1 = [ [ 17 , 175 ] ,
2389
+ [ 370 , 24 ] ,
2390
+ [ 192 , 456 ] ,
2391
+ [ 614 , 202 ] ,
2392
+ [ 116 , 111 ] ,
2393
+ [ 305 , 32 ] ,
2394
+ [ 249 , 268 ] ,
2395
+ [ 464 , 157 ] ,
2396
+ [ 259 , 333 ] ,
2397
+ [ 460 , 224 ] ]
2398
+
2399
+ points2 = [ [ 295 , 28 ] ,
2400
+ [ 584 , 221 ] ,
2401
+ [ 67 , 172 ] ,
2402
+ [ 400 , 443 ] ,
2403
+ [ 330 , 9 ] ,
2404
+ [ 480 , 140 ] ,
2405
+ [ 181 , 140 ] ,
2406
+ [ 350 , 265 ] ,
2407
+ [ 176 , 193 ] ,
2408
+ [ 333 , 313 ] ]
2409
+
2410
+ mat1 = CvMat . new ( num_points , 2 , CV_64F , 1 )
2411
+ mat2 = CvMat . new ( num_points , 2 , CV_64F , 1 )
2412
+ points1 . flatten . each_with_index { |pt , i |
2413
+ mat1 [ i ] = CvScalar . new ( pt )
2414
+ }
2415
+ points2 . flatten . each_with_index { |pt , i |
2416
+ mat2 [ i ] = CvScalar . new ( pt )
2417
+ }
2418
+
2419
+ # pre computed f matrix from points1, points2
2420
+ # f_mat = CvMat.find_fundamental_mat(mat1, mat2, CV_FM_LMEDS)
2421
+ f_mat_arr = [ 0.000266883 , 0.000140277 , -0.0445223 ,
2422
+ -0.00012592 , 0.000245543 , -0.108868 ,
2423
+ -0.00407942 , -0.00291097 , 1 ]
2424
+ test_func . call ( mat1 , mat2 , f_mat_arr , num_points )
2425
+
2426
+ # input points are 2xN matrix
2427
+ points1 = [ [ 17 , 370 , 192 , 614 , 116 , 305 , 249 , 464 , 259 , 460 ] ,
2428
+ [ 175 , 24 , 456 , 202 , 111 , 32 , 268 , 157 , 333 , 224 ] ]
2429
+
2430
+ points2 = [ [ 295 , 584 , 67 , 400 , 330 , 480 , 181 , 350 , 176 , 333 ] ,
2431
+ [ 28 , 221 , 172 , 443 , 9 , 140 , 140 , 265 , 193 , 313 ] ]
2432
+
2433
+ mat1 = CvMat . new ( 2 , num_points , CV_64F , 1 )
2434
+ mat2 = CvMat . new ( 2 , num_points , CV_64F , 1 )
2435
+ points1 . flatten . each_with_index { |pt , i |
2436
+ mat1 [ i ] = CvScalar . new ( pt )
2437
+ }
2438
+ points2 . flatten . each_with_index { |pt , i |
2439
+ mat2 [ i ] = CvScalar . new ( pt )
2440
+ }
2441
+ test_func . call ( mat1 , mat2 , f_mat_arr , num_points )
2442
+ end
2351
2443
end
2352
2444
0 commit comments