Skip to content
This repository was archived by the owner on Dec 3, 2021. It is now read-only.

Commit fc5a680

Browse files
committed
tested CvMat.compute_correspond_epilines
1 parent a3e1078 commit fc5a680

File tree

2 files changed

+105
-11
lines changed

2 files changed

+105
-11
lines changed

ext/opencv/cvmat.cpp

+10-8
Original file line numberDiff line numberDiff line change
@@ -5185,16 +5185,18 @@ VALUE
51855185
rb_compute_correspond_epilines(VALUE klass, VALUE points, VALUE which_image, VALUE fundamental_matrix)
51865186
{
51875187
VALUE correspondent_lines;
5188-
CvSize size = cvGetSize(CVARR(points));
5188+
CvMat* points_ptr = CVMAT(points);
51895189
int n;
5190-
if(size.width <= 3 && size.height >= 7)
5191-
n = size.height;
5192-
else if(size.height <= 3 && size.width >= 7)
5193-
n = size.width;
5190+
if(points_ptr->cols <= 3 && points_ptr->rows >= 7)
5191+
n = points_ptr->rows;
5192+
else if(points_ptr->rows <= 3 && points_ptr->cols >= 7)
5193+
n = points_ptr->cols;
51945194
else
5195-
rb_raise(rb_eTypeError, "input points should 2xN, Nx2 or 3xN, Nx3 matrix(N >= 7).");
5196-
correspondent_lines = cCvMat::new_object(n, 3, CV_32F);
5197-
cvComputeCorrespondEpilines(CVMAT(points), FIX2INT(which_image), CVMAT(fundamental_matrix), CVMAT(correspondent_lines));
5195+
rb_raise(rb_eArgError, "input points should 2xN, Nx2 or 3xN, Nx3 matrix(N >= 7).");
5196+
5197+
correspondent_lines = cCvMat::new_object(n, 3, CV_MAT_DEPTH(points_ptr->type));
5198+
cvComputeCorrespondEpilines(points_ptr, FIX2INT(which_image), CVMAT(fundamental_matrix),
5199+
CVMAT(correspondent_lines));
51985200
return correspondent_lines;
51995201
}
52005202

test/test_cvmat.rb

+95-3
Original file line numberDiff line numberDiff line change
@@ -2121,7 +2121,7 @@ def test_find_fundamental_mat_lmeds
21212121

21222122
# default
21232123
[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),
21252125
CvMat.find_fundamental_mat_lmeds(mat1, mat2)].each { |f_mat|
21262126
assert_equal(3, f_mat.rows)
21272127
assert_equal(3, f_mat.cols)
@@ -2271,7 +2271,7 @@ def test_find_fundamental_mat
22712271
}
22722272

22732273
[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),
22752275
CvMat.find_fundamental_mat(mat1, mat2, CV_FM_RANSAC)].each { |f_mat|
22762276
assert_equal(3, f_mat.rows)
22772277
assert_equal(3, f_mat.cols)
@@ -2317,7 +2317,7 @@ def test_find_fundamental_mat
23172317
}
23182318

23192319
[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),
23212321
CvMat.find_fundamental_mat(mat1, mat2, CV_FM_LMEDS)].each { |f_mat|
23222322
assert_equal(3, f_mat.rows)
23232323
assert_equal(3, f_mat.cols)
@@ -2348,5 +2348,97 @@ def test_find_fundamental_mat
23482348
assert_in_delta(val, status[i][0], 1.0e-5)
23492349
}
23502350
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
23512443
end
23522444

0 commit comments

Comments
 (0)