Java API: cleaned imgproc tests; changed signatures of several java functions

pull/13383/head
Andrey Kamaev 14 years ago
parent e2e4ee2f53
commit 99e3b5a24e
  1. 1499
      modules/java/android_test/src/org/opencv/test/imgproc/ImgprocTest.java
  2. 7
      modules/java/gen_java.py

@ -688,6 +688,13 @@ func_arg_fix = {
'fillPoly' : { 'pts' : 'vector_vector_Point', },
'polylines' : { 'pts' : 'vector_vector_Point', },
'fillConvexPoly' : { 'points' : 'vector_Point', },
'boundingRect' : { 'points' : 'vector_Point', },
#'approxPolyDP' : { 'curve' : 'vector_Point2f', 'CV_OUT approxCurve' : 'vector_Point2f', },
'arcLength' : { 'curve' : 'vector_Point2f', },
'isContourConvex' : { 'contour' : 'vector_Point2f', },
'pointPolygonTest' : { 'contour' : 'vector_Point2f', },
'minAreaRect' : { 'points' : 'vector_Point2f', },
'getAffineTransform' : { 'src' : 'vector_Point2f', 'dst' : 'vector_Point2f', },
}, # '', i.e. no class
} # func_arg_fix

Loading…
Cancel
Save