1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

mostly removed obsolete C API from calib3d (at least at the interface level) (#13081)

This commit is contained in:
Vadim Pisarevsky
2018-11-09 16:12:22 +03:00
committed by GitHub
parent 8cdf7bb84b
commit 8f15a609af
28 changed files with 1219 additions and 2451 deletions
+1 -1
View File
@@ -796,7 +796,7 @@ int CV_RemapTest::prepare_test_case( int test_case_idx )
k[2] = cvtest::randReal(rng)*0.004 - 0.002;
k[3] = cvtest::randReal(rng)*0.004 - 0.002;
cvtest::initUndistortMap( _a, _k, test_mat[INPUT][1].size(), test_mat[INPUT][1], test_mat[INPUT][2] );
cvtest::initUndistortMap( _a, _k, Mat(), Mat(), test_mat[INPUT][1].size(), test_mat[INPUT][1], test_mat[INPUT][2], CV_32F );
return code;
}