Home
last modified time | relevance | path

Searched refs:CHECK_MAT (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/java/generator/src/cpp/
Dconverters.cpp6 #define CHECK_MAT(cond) if(!(cond)){ LOGD("FAILED: " #cond); return; } macro
14 CHECK_MAT(mat.type()==CV_32SC1 && mat.cols==1); in Mat_to_vector_int()
29 CHECK_MAT(mat.type()==CV_64FC1 && mat.cols==1); in Mat_to_vector_double()
44 CHECK_MAT(mat.type()==CV_32FC1 && mat.cols==1); in Mat_to_vector_float()
59 CHECK_MAT(mat.type()==CV_8UC1 && mat.cols==1); in Mat_to_vector_uchar()
71 CHECK_MAT(mat.type()==CV_8SC1 && mat.cols==1); in Mat_to_vector_char()
86 CHECK_MAT(mat.type()==CV_32SC4 && mat.cols==1); in Mat_to_vector_Rect()
100 CHECK_MAT(mat.type()==CV_32SC2 && mat.cols==1); in Mat_to_vector_Point()
108 CHECK_MAT(mat.type()==CV_32FC2 && mat.cols==1); in Mat_to_vector_Point2f()
116 CHECK_MAT(mat.type()==CV_64FC2 && mat.cols==1); in Mat_to_vector_Point2d()
[all …]
/external/opencv3/modules/features2d/misc/java/src/cpp/
Dfeatures2d_converters.cpp7 #define CHECK_MAT(cond) if(!(cond)){ LOGD("FAILED: " #cond); return; } macro
14 CHECK_MAT(mat.type()==CV_32FC(7) && mat.cols==1); in Mat_to_vector_KeyPoint()
40 CHECK_MAT(mat.type()==CV_32FC4 && mat.cols==1); in Mat_to_vector_DMatch()