java tests: added test for OFLK, FD, other improvements

This commit is contained in:
Kirill Kornyakov
2011-07-18 13:50:36 +00:00
parent 16ba62dcd5
commit 51922658b6
7 changed files with 378 additions and 75 deletions

View File

@@ -6,6 +6,34 @@ try:
except:
from StringIO import StringIO
class_ignore_list = (
#core
"FileNode",
"FileStorage",
#highgui
"VideoWriter",
"VideoCapture",
)
func_ignore_list = (
#core
"checkHardwareSupport",
"setUseOptimized",
"useOptimized",
"vconcat",
#highgui
"namedWindow",
"destroyWindow",
"destroyAllWindows",
"startWindowThread",
"setWindowProperty",
"getWindowProperty",
"getTrackbarPos",
"setTrackbarPos",
"imshow",
"waitKey",
)
const_ignore_list = (
"CV_CAP_OPENNI",
"CV_CAP_PROP_OPENNI_",
@@ -73,23 +101,6 @@ const_ignore_list = (
"CV_CAP_PROP_PVAPI_MULTICASTIP",
)
func_ignore_list = (
"namedWindow",
"destroyWindow",
"destroyAllWindows",
"startWindowThread",
"setWindowProperty",
"getWindowProperty",
"getTrackbarPos",
"setTrackbarPos",
"imshow",
"waitKey",
)
class_ignore_list = (
"VideoWriter",
"VideoCapture",
)
# c_type : { java/jni correspondence }
type_dict = {