123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907 |
- {
- "module_imports": [ "java.lang.String" ],
- "module_j_code": "src/java/core+Core.jcode.in",
- "class_ignore_list" : [
- "FileNode",
- "FileStorage",
- "KDTree",
- "KeyPoint",
- "DMatch"
- ],
- "missing_consts" : {
- "Core" : {
- "private" : [
- ["CV_8U", 0 ], ["CV_8S", 1 ],
- ["CV_16U", 2 ], ["CV_16S", 3 ],
- ["CV_32S", 4 ],
- ["CV_32F", 5 ], ["CV_64F", 6 ],
- ["CV_USRTYPE1", 7 ]
- ],
- "public" : [
- ["SVD_MODIFY_A", 1], ["SVD_NO_UV", 2], ["SVD_FULL_UV", 4],
- ["FILLED", -1],
- ["REDUCE_SUM", 0], ["REDUCE_AVG", 1], ["REDUCE_MAX", 2], ["REDUCE_MIN", 3]
- ]
- }
- },
- "ManualFuncs" : {
- "Core" : {
- "minMaxLoc" : {
- "j_code" : [
- "// manual port",
- "public static class MinMaxLocResult {",
- " public double minVal;",
- " public double maxVal;",
- " public Point minLoc;",
- " public Point maxLoc;",
- "\n",
- " public MinMaxLocResult() {",
- " minVal=0; maxVal=0;",
- " minLoc=new Point();",
- " maxLoc=new Point();",
- " }",
- "}",
- "\n",
- "// C++: minMaxLoc(Mat src, double* minVal, double* maxVal=0, Point* minLoc=0, Point* maxLoc=0, InputArray mask=noArray())",
- "\n",
- "//javadoc: minMaxLoc(src, mask)",
- "public static MinMaxLocResult minMaxLoc(Mat src, Mat mask) {",
- " MinMaxLocResult res = new MinMaxLocResult();",
- " long maskNativeObj=0;",
- " if (mask != null) {",
- " maskNativeObj=mask.nativeObj;",
- " }",
- " double resarr[] = n_minMaxLocManual(src.nativeObj, maskNativeObj);",
- " res.minVal=resarr[0];",
- " res.maxVal=resarr[1];",
- " res.minLoc.x=resarr[2];",
- " res.minLoc.y=resarr[3];",
- " res.maxLoc.x=resarr[4];",
- " res.maxLoc.y=resarr[5];",
- " return res;",
- "}",
- "\n",
- "//javadoc: minMaxLoc(src)",
- "public static MinMaxLocResult minMaxLoc(Mat src) {",
- " return minMaxLoc(src, null);",
- "}"
- ],
- "jn_code" : [
- "private static native double[] n_minMaxLocManual(long src_nativeObj, long mask_nativeObj);\n"
- ],
- "cpp_code" : [
- "// C++: minMaxLoc(Mat src, double* minVal, double* maxVal=0, Point* minLoc=0, Point* maxLoc=0, InputArray mask=noArray())",
- "JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_Core_n_1minMaxLocManual (JNIEnv*, jclass, jlong, jlong);",
- "\n",
- "JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_Core_n_1minMaxLocManual",
- " (JNIEnv* env, jclass, jlong src_nativeObj, jlong mask_nativeObj)",
- "{",
- " try {",
- " LOGD(\"Core::n_1minMaxLoc()\");",
- " jdoubleArray result;",
- " result = env->NewDoubleArray(6);",
- " if (result == NULL) {",
- " return NULL; /* out of memory error thrown */",
- " }",
- "\n",
- " Mat& src = *((Mat*)src_nativeObj);",
- "\n",
- " double minVal, maxVal;",
- " Point minLoc, maxLoc;",
- " if (mask_nativeObj != 0) {",
- " Mat& mask = *((Mat*)mask_nativeObj);",
- " minMaxLoc(src, &minVal, &maxVal, &minLoc, &maxLoc, mask);",
- " } else {",
- " minMaxLoc(src, &minVal, &maxVal, &minLoc, &maxLoc);",
- " }",
- "\n",
- " jdouble fill[6];",
- " fill[0]=minVal;",
- " fill[1]=maxVal;",
- " fill[2]=minLoc.x;",
- " fill[3]=minLoc.y;",
- " fill[4]=maxLoc.x;",
- " fill[5]=maxLoc.y;",
- "\n",
- " env->SetDoubleArrayRegion(result, 0, 6, fill);",
- "\n",
- " return result;",
- "\n",
- " } catch(const cv::Exception& e) {",
- " LOGD(\"Core::n_1minMaxLoc() caught cv::Exception: %s\", e.what());",
- " jclass je = env->FindClass(\"org/opencv/core/CvException\");",
- " if(!je) je = env->FindClass(\"java/lang/Exception\");",
- " env->ThrowNew(je, e.what());",
- " return NULL;",
- " } catch (...) {",
- " LOGD(\"Core::n_1minMaxLoc() caught unknown exception (...)\");",
- " jclass je = env->FindClass(\"java/lang/Exception\");",
- " env->ThrowNew(je, \"Unknown exception in JNI code {core::minMaxLoc()}\");",
- " return NULL;",
- " }",
- "}",
- "\n"
- ]
- },
- "checkHardwareSupport" : {"j_code" : [""], "jn_code" : [""], "cpp_code" : [""] },
- "setUseOptimized" : {"j_code" : [""], "jn_code" : [""], "cpp_code" : [""] },
- "useOptimized" : {"j_code" : [""], "jn_code" : [""], "cpp_code" : [""] }
- }
- },
- "func_arg_fix" : {
- "randu" : { "low" : {"ctype" : "double"},
- "high" : {"ctype" : "double"} },
- "randn" : { "mean" : {"ctype" : "double"},
- "stddev" : {"ctype" : "double"} },
- "inRange" : { "lowerb" : {"ctype" : "Scalar"},
- "upperb" : {"ctype" : "Scalar"} },
- "boundingRect" : { "points" : {"ctype" : "vector_Point"} },
- "hconcat" : { "src" : {"ctype" : "vector_Mat"} },
- "vconcat" : { "src" : {"ctype" : "vector_Mat"} },
- "checkRange" : {"pos" : {"ctype" : "*"} },
- "meanStdDev" : { "mean" : {"ctype" : "vector_double"},
- "stddev" : {"ctype" : "vector_double"} },
- "mixChannels" : { "dst" : {"attrib" : []} }
- },
- "type_dict" : {
- "Algorithm": {
- "j_type": "Feature2D",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "Feature2D %(n)s",
- "suffix": "J",
- "j_import": "org.opencv.core.Algorithm"
- },
- "CvSlice": {
- "j_type": "Range",
- "jn_args": [
- [
- "int",
- ".start"
- ],
- [
- "int",
- ".end"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Range %(n)s(%(n)s_start, %(n)s_end)",
- "suffix": "II",
- "j_import": "org.opencv.core.Range"
- },
- "CvTermCriteria": {
- "j_type": "TermCriteria",
- "jn_args": [
- [
- "int",
- ".type"
- ],
- [
- "int",
- ".maxCount"
- ],
- [
- "double",
- ".epsilon"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "TermCriteria %(n)s(%(n)s_type, %(n)s_maxCount, %(n)s_epsilon)",
- "suffix": "IID",
- "j_import": "org.opencv.core.TermCriteria"
- },
- "DMatch": {
- "j_type": "DMatch",
- "jn_args": [
- [
- "int",
- "queryIdx"
- ],
- [
- "int",
- "trainIdx"
- ],
- [
- "int",
- "imgIdx"
- ],
- [
- "float",
- "distance"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "DMatch %(n)s(%(n)s_queryIdx, %(n)s_trainIdx, %(n)s_imgIdx, %(n)s_distance)",
- "suffix": "IIIF",
- "j_import": "org.opencv.core.DMatch"
- },
- "KeyPoint": {
- "j_type": "KeyPoint",
- "jn_args": [
- [
- "float",
- ".x"
- ],
- [
- "float",
- ".y"
- ],
- [
- "float",
- ".size"
- ],
- [
- "float",
- ".angle"
- ],
- [
- "float",
- ".response"
- ],
- [
- "int",
- ".octave"
- ],
- [
- "int",
- ".class_id"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "KeyPoint %(n)s(%(n)s_x, %(n)s_y, %(n)s_size, %(n)s_angle, %(n)s_response, %(n)s_octave, %(n)s_class_id)",
- "suffix": "FFFFFII",
- "j_import": "org.opencv.core.KeyPoint"
- },
- "Mat": {
- "j_type": "Mat",
- "jn_args": [
- [
- "__int64",
- ".nativeObj"
- ]
- ],
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "Mat& %(n)s = *((Mat*)%(n)s_nativeObj)",
- "suffix": "J",
- "j_import": "org.opencv.core.Mat"
- },
- "Moments": {
- "j_type": "Moments",
- "jn_args": [
- [
- "double",
- ".m00"
- ],
- [
- "double",
- ".m10"
- ],
- [
- "double",
- ".m01"
- ],
- [
- "double",
- ".m20"
- ],
- [
- "double",
- ".m11"
- ],
- [
- "double",
- ".m02"
- ],
- [
- "double",
- ".m30"
- ],
- [
- "double",
- ".m21"
- ],
- [
- "double",
- ".m12"
- ],
- [
- "double",
- ".m03"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Moments %(n)s(%(n)s_m00, %(n)s_m10, %(n)s_m01, %(n)s_m20, %(n)s_m11, %(n)s_m02, %(n)s_m30, %(n)s_m21, %(n)s_m12, %(n)s_m03)",
- "suffix": "DDDDDDDDDD"
- },
- "Point": {
- "j_type": "Point",
- "jn_args": [
- [
- "double",
- ".x"
- ],
- [
- "double",
- ".y"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Point %(n)s((int)%(n)s_x, (int)%(n)s_y)",
- "suffix": "DD",
- "j_import": "org.opencv.core.Point"
- },
- "Point2d": {
- "j_type": "Point",
- "jn_args": [
- [
- "double",
- ".x"
- ],
- [
- "double",
- ".y"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Point2d %(n)s(%(n)s_x, %(n)s_y)",
- "suffix": "DD",
- "j_import": "org.opencv.core.Point"
- },
- "Point2f": {
- "j_type": "Point",
- "jn_args": [
- [
- "double",
- ".x"
- ],
- [
- "double",
- ".y"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Point2f %(n)s((float)%(n)s_x, (float)%(n)s_y)",
- "suffix": "DD",
- "j_import": "org.opencv.core.Point"
- },
- "Point3d": {
- "j_type": "Point3",
- "jn_args": [
- [
- "double",
- ".x"
- ],
- [
- "double",
- ".y"
- ],
- [
- "double",
- ".z"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Point3d %(n)s(%(n)s_x, %(n)s_y, %(n)s_z)",
- "suffix": "DDD",
- "j_import": "org.opencv.core.Point3"
- },
- "Point3f": {
- "j_type": "Point3",
- "jn_args": [
- [
- "double",
- ".x"
- ],
- [
- "double",
- ".y"
- ],
- [
- "double",
- ".z"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Point3f %(n)s((float)%(n)s_x, (float)%(n)s_y, (float)%(n)s_z)",
- "suffix": "DDD",
- "j_import": "org.opencv.core.Point3"
- },
- "Point3i": {
- "j_type": "Point3",
- "jn_args": [
- [
- "double",
- ".x"
- ],
- [
- "double",
- ".y"
- ],
- [
- "double",
- ".z"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Point3i %(n)s((int)%(n)s_x, (int)%(n)s_y, (int)%(n)s_z)",
- "suffix": "DDD",
- "j_import": "org.opencv.core.Point3"
- },
- "Range": {
- "j_type": "Range",
- "jn_args": [
- [
- "int",
- ".start"
- ],
- [
- "int",
- ".end"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Range %(n)s(%(n)s_start, %(n)s_end)",
- "suffix": "II",
- "j_import": "org.opencv.core.Range"
- },
- "Rect": {
- "j_type": "Rect",
- "jn_args": [
- [
- "int",
- ".x"
- ],
- [
- "int",
- ".y"
- ],
- [
- "int",
- ".width"
- ],
- [
- "int",
- ".height"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Rect %(n)s(%(n)s_x, %(n)s_y, %(n)s_width, %(n)s_height)",
- "suffix": "IIII",
- "j_import": "org.opencv.core.Rect"
- },
- "Rect2d": {
- "j_type": "Rect2d",
- "jn_args": [
- [
- "double",
- ".x"
- ],
- [
- "double",
- ".y"
- ],
- [
- "double",
- ".width"
- ],
- [
- "double",
- ".height"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Rect %(n)s(%(n)s_x, %(n)s_y, %(n)s_width, %(n)s_height)",
- "suffix": "DDDD",
- "j_import": "org.opencv.core.Rect2d"
- },
- "RotatedRect": {
- "j_type": "RotatedRect",
- "jn_args": [
- [
- "double",
- ".center.x"
- ],
- [
- "double",
- ".center.y"
- ],
- [
- "double",
- ".size.width"
- ],
- [
- "double",
- ".size.height"
- ],
- [
- "double",
- ".angle"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "RotatedRect %(n)s(cv::Point2f(%(n)s_center_x, %(n)s_center_y), cv::Size2f(%(n)s_size_width, %(n)s_size_height), %(n)s_angle)",
- "suffix": "DDDDD",
- "j_import": "org.opencv.core.RotatedRect"
- },
- "Scalar": {
- "j_type": "Scalar",
- "jn_args": [
- [
- "double",
- ".val[0]"
- ],
- [
- "double",
- ".val[1]"
- ],
- [
- "double",
- ".val[2]"
- ],
- [
- "double",
- ".val[3]"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Scalar %(n)s(%(n)s_val0, %(n)s_val1, %(n)s_val2, %(n)s_val3)",
- "suffix": "DDDD",
- "j_import": "org.opencv.core.Scalar"
- },
- "Size": {
- "j_type": "Size",
- "jn_args": [
- [
- "double",
- ".width"
- ],
- [
- "double",
- ".height"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Size %(n)s((int)%(n)s_width, (int)%(n)s_height)",
- "suffix": "DD",
- "j_import": "org.opencv.core.Size"
- },
- "Size2f": {
- "j_type": "Size",
- "jn_args": [
- [
- "double",
- ".width"
- ],
- [
- "double",
- ".height"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "Size2f %(n)s((float)%(n)s_width, (float)%(n)s_height)",
- "suffix": "DD",
- "j_import": "org.opencv.core.Size"
- },
- "String": {
- "j_type": "String",
- "jn_type": "String",
- "jni_name": "n_%(n)s",
- "jni_type": "jstring",
- "jni_var": "const char* utf_%(n)s = env->GetStringUTFChars(%(n)s, 0); String n_%(n)s( utf_%(n)s ? utf_%(n)s : \"\" ); env->ReleaseStringUTFChars(%(n)s, utf_%(n)s)",
- "suffix": "Ljava_lang_String_2",
- "j_import": "java.lang.String"
- },
- "TermCriteria": {
- "j_type": "TermCriteria",
- "jn_args": [
- [
- "int",
- ".type"
- ],
- [
- "int",
- ".maxCount"
- ],
- [
- "double",
- ".epsilon"
- ]
- ],
- "jni_type": "jdoubleArray",
- "jni_var": "TermCriteria %(n)s(%(n)s_type, %(n)s_maxCount, %(n)s_epsilon)",
- "suffix": "IID",
- "j_import": "org.opencv.core.TermCriteria"
- },
- "Vec2d": {
- "j_type": "double[]",
- "jn_args": [
- [
- "double",
- ".val[0]"
- ],
- [
- "double",
- ".val[1]"
- ]
- ],
- "jn_type": "double[]",
- "jni_type": "jdoubleArray",
- "jni_var": "Vec2d %(n)s(%(n)s_val0, %(n)s_val1)",
- "suffix": "DD"
- },
- "Vec3d": {
- "j_type": "double[]",
- "jn_args": [
- [
- "double",
- ".val[0]"
- ],
- [
- "double",
- ".val[1]"
- ],
- [
- "double",
- ".val[2]"
- ]
- ],
- "jn_type": "double[]",
- "jni_type": "jdoubleArray",
- "jni_var": "Vec3d %(n)s(%(n)s_val0, %(n)s_val1, %(n)s_val2)",
- "suffix": "DDD"
- },
- "c_string": {
- "j_type": "String",
- "jn_type": "String",
- "jni_name": "n_%(n)s.c_str()",
- "jni_type": "jstring",
- "jni_var": "const char* utf_%(n)s = env->GetStringUTFChars(%(n)s, 0); String n_%(n)s( utf_%(n)s ? utf_%(n)s : \"\" ); env->ReleaseStringUTFChars(%(n)s, utf_%(n)s)",
- "suffix": "Ljava_lang_String_2",
- "j_import": "java.lang.String"
- },
- "size_t": {
- "j_type": "long",
- "jn_type": "long",
- "jni_type": "jlong",
- "suffix": "J"
- },
- "vector_DMatch": {
- "j_type": "MatOfDMatch",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<DMatch> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfDMatch"
- },
- "vector_KeyPoint": {
- "j_type": "MatOfKeyPoint",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<KeyPoint> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfKeyPoint"
- },
- "vector_Mat": {
- "j_type": "List<Mat>",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Mat> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.Mat"
- },
- "vector_Point": {
- "j_type": "MatOfPoint",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Point> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfPoint"
- },
- "vector_Point2f": {
- "j_type": "MatOfPoint2f",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Point2f> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfPoint2f"
- },
- "vector_Point3f": {
- "j_type": "MatOfPoint3f",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Point3f> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfPoint3f"
- },
- "vector_Point2d": {
- "j_type": "MatOfPoint2f",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Point2f> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfPoint2f"
- },
- "vector_Point3d": {
- "j_type": "MatOfPoint3f",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Point3f> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfPoint3f"
- },
- "vector_Point3i": {
- "j_type": "MatOfPoint3",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Point3i> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfPoint3"
- },
- "vector_Rect": {
- "j_type": "MatOfRect",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Rect> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfRect"
- },
- "vector_Rect2d": {
- "j_type": "MatOfRect2d",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Rect2d> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfRect2d"
- },
- "vector_RotatedRect": {
- "j_type": "MatOfRotatedRect",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector< RotatedRect > %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfRotatedRect"
- },
- "vector_String": {
- "j_type": "List<String>",
- "jn_type": "List<String>",
- "jni_type": "jobject",
- "jni_var": "std::vector< String > %(n)s",
- "suffix": "Ljava_util_List",
- "v_type": "String",
- "j_import": "java.lang.String"
- },
- "vector_Vec4f": {
- "j_type": "MatOfFloat4",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Vec4f> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfFloat4"
- },
- "vector_Vec4i": {
- "j_type": "MatOfInt4",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Vec4i> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfInt4"
- },
- "vector_Vec6f": {
- "j_type": "MatOfFloat6",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<Vec6f> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfFloat6"
- },
- "vector_char": {
- "j_type": "MatOfByte",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<char> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfByte"
- },
- "vector_double": {
- "j_type": "MatOfDouble",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<double> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfDouble"
- },
- "vector_float": {
- "j_type": "MatOfFloat",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<float> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfFloat"
- },
- "vector_int": {
- "j_type": "MatOfInt",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<int> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfInt"
- },
- "vector_uchar": {
- "j_type": "MatOfByte",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector<uchar> %(n)s",
- "suffix": "J",
- "v_type": "Mat",
- "j_import": "org.opencv.core.MatOfByte"
- },
- "vector_vector_DMatch": {
- "j_type": "List<MatOfDMatch>",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector< std::vector<DMatch> > %(n)s",
- "v_type": "vector_Mat",
- "j_import": "org.opencv.core.MatOfDMatch"
- },
- "vector_vector_KeyPoint": {
- "j_type": "List<MatOfKeyPoint>",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector< std::vector<KeyPoint> > %(n)s",
- "v_type": "vector_Mat",
- "j_import": "org.opencv.core.MatOfKeyPoint"
- },
- "vector_vector_Point": {
- "j_type": "List<MatOfPoint>",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector< std::vector<Point> > %(n)s",
- "v_type": "vector_Mat",
- "j_import": "org.opencv.core.MatOfPoint"
- },
- "vector_vector_Point2f": {
- "j_type": "List<MatOfPoint2f>",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector< std::vector<Point2f> > %(n)s",
- "v_type": "vector_Mat",
- "j_import": "org.opencv.core.MatOfPoint2f"
- },
- "vector_vector_Point3f": {
- "j_type": "List<MatOfPoint3f>",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector< std::vector<Point3f> > %(n)s",
- "v_type": "vector_Mat",
- "j_import": "org.opencv.core.MatOfPoint3f"
- },
- "vector_vector_char": {
- "j_type": "List<MatOfByte>",
- "jn_type": "long",
- "jni_type": "jlong",
- "jni_var": "std::vector< std::vector<char> > %(n)s",
- "v_type": "vector_Mat",
- "j_import": "org.opencv.core.MatOfByte"
- }
- }
- }
|