Skip to content

Commit 68d0197

Browse files
committed
Merge pull request opencv#8883 from abratchik:DNN.java.wrappers.fix
2 parents 1f40671 + 037d8fb commit 68d0197

File tree

14 files changed

+1480
-661
lines changed

14 files changed

+1480
-661
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"class_ignore_list": [
3+
"CirclesGridFinderParameters"
4+
],
5+
"missing_consts" : {
6+
"Calib3d": {
7+
"public" : [
8+
["CALIB_USE_INTRINSIC_GUESS", "1"],
9+
["CALIB_RECOMPUTE_EXTRINSIC", "2"],
10+
["CALIB_CHECK_COND", "4"],
11+
["CALIB_FIX_SKEW", "8"],
12+
["CALIB_FIX_K1", "16"],
13+
["CALIB_FIX_K2", "32"],
14+
["CALIB_FIX_K3", "64"],
15+
["CALIB_FIX_K4", "128"],
16+
["CALIB_FIX_INTRINSIC", "256"]
17+
]
18+
}
19+
},
20+
"func_arg_fix" : {
21+
"findFundamentalMat" : { "points1" : {"ctype" : "vector_Point2f"},
22+
"points2" : {"ctype" : "vector_Point2f"} },
23+
"cornerSubPix" : { "corners" : {"ctype" : "vector_Point2f"} },
24+
"findHomography" : { "srcPoints" : {"ctype" : "vector_Point2f"},
25+
"dstPoints" : {"ctype" : "vector_Point2f"} },
26+
"solvePnP" : { "objectPoints" : {"ctype" : "vector_Point3f"},
27+
"imagePoints" : {"ctype" : "vector_Point2f"},
28+
"distCoeffs" : {"ctype" : "vector_double" } },
29+
"solvePnPRansac" : { "objectPoints" : {"ctype" : "vector_Point3f"},
30+
"imagePoints" : {"ctype" : "vector_Point2f"},
31+
"distCoeffs" : {"ctype" : "vector_double" } },
32+
"undistortPoints" : { "src" : {"ctype" : "vector_Point2f"},
33+
"dst" : {"ctype" : "vector_Point2f"} },
34+
"projectPoints" : { "objectPoints" : {"ctype" : "vector_Point3f"},
35+
"imagePoints" : {"ctype" : "vector_Point2f"},
36+
"distCoeffs" : {"ctype" : "vector_double" } },
37+
"initCameraMatrix2D" : { "objectPoints" : {"ctype" : "vector_vector_Point3f"},
38+
"imagePoints" : {"ctype" : "vector_vector_Point2f"} },
39+
"findChessboardCorners" : { "corners" : {"ctype" : "vector_Point2f"} },
40+
"drawChessboardCorners" : { "corners" : {"ctype" : "vector_Point2f"} }
41+
}
42+
}

0 commit comments

Comments
 (0)