/external/opencv3/modules/imgproc/perf/ |
H A D | perf_integral.cpp | 22 int sdepth = get<2>(GetParam()); local 25 Mat sum(sz, sdepth); 29 TEST_CYCLE() integral(src, sum, sdepth); 44 int sdepth = get<2>(GetParam()); local 47 Mat sum(sz, sdepth); 48 Mat sqsum(sz, sdepth); 53 TEST_CYCLE() integral(src, sum, sqsum, sdepth); 69 int sdepth = get<2>(GetParam()); local 72 Mat sum(sz, sdepth); 73 Mat sqsum(sz, sdepth); [all...] |
/external/opencv3/modules/imgproc/test/ocl/ |
H A D | test_accumulate.cpp | 57 int sdepth, ddepth, channels; local 69 sdepth = depths.first, ddepth = depths.second; 76 const int stype = CV_MAKE_TYPE(sdepth, channels),
|
H A D | test_imgproc.cpp | 287 int sdepth, sqdepth; member in struct:cvtest::ocl::Integral 294 sdepth = GET_PARAM(1); 308 randomSubMat(dst, dst_roi, isize, dstBorder, sdepth, 5, 16); 333 OCL_OFF(cv::integral(src_roi, dst_roi, sdepth)); 334 OCL_ON(cv::integral(usrc_roi, udst_roi, sdepth)); 346 OCL_OFF(cv::integral(src_roi, dst_roi, dst2_roi, sdepth, sqdepth)); 347 OCL_ON(cv::integral(usrc_roi, udst_roi, udst2_roi, sdepth, sqdepth)); 468 Values(CV_32SC1, CV_32FC1), // desired sdepth
|
/external/opencv3/modules/imgproc/src/ |
H A D | sumpixels.cpp | 340 static bool ocl_integral( InputArray _src, OutputArray _sum, int sdepth ) 345 !(sdepth == CV_32S || sdepth == CV_32F || (doubleSupport && sdepth == CV_64F))) 351 ocl::typeToStr(sdepth), tileSize, 361 UMat buf(bufsize, sdepth); 372 _sum.create(sumsize, sdepth); 380 static bool ocl_integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, int sdepth, int sqdepth ) argument 384 if ( _src.type() != CV_8UC1 || (!doubleSupport && (sdepth == CV_64F || sqdepth == CV_64F)) ) 390 ocl::typeToStr(sdepth), oc 428 integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, OutputArray _tilted, int sdepth, int sqdepth ) argument 541 integral( InputArray src, OutputArray sum, OutputArray sqsum, int sdepth, int sqdepth ) argument [all...] |
H A D | accum.cpp | 769 inline int getAccTabIdx(int sdepth, int ddepth) argument 771 return sdepth == CV_8U && ddepth == CV_32F ? 0 : 772 sdepth == CV_8U && ddepth == CV_64F ? 1 : 773 sdepth == CV_16U && ddepth == CV_32F ? 2 : 774 sdepth == CV_16U && ddepth == CV_64F ? 3 : 775 sdepth == CV_32F && ddepth == CV_32F ? 4 : 776 sdepth == CV_32F && ddepth == CV_64F ? 5 : 777 sdepth == CV_64F && ddepth == CV_64F ? 6 : -1; 798 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype), ddepth = _dst.depth(); local 801 if (!doubleSupport && (sdepth 848 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local 933 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local 1017 int stype = _src1.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local 1105 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local [all...] |
H A D | deriv.cpp | 204 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local 206 ddepth = sdepth; 558 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local 560 ddepth = sdepth; 596 int ktype = std::max(CV_32F, std::max(ddepth, sdepth)); 616 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local 618 ddepth = sdepth; 641 int ktype = std::max(CV_32F, std::max(ddepth, sdepth)); 673 int sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype), esz = CV_ELEM_SIZE(stype); local 676 if (!doubleSupport && (sdepth 805 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local [all...] |
H A D | smooth.cpp | 1036 int type = _src.type(), sdepth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type), esz = CV_ELEM_SIZE(type); local 1040 ddepth = sdepth; 1042 if (cn > 4 || (!doubleSupport && (sdepth == CV_64F || ddepth == CV_64F)) || 1056 int wdepth = std::max(CV_32F, std::max(ddepth, sdepth)), 1127 ocl::typeToStr(type), ocl::typeToStr(sdepth), ocl::typeToStr(dtype), 1129 ocl::convertTypeStr(sdepth, wdepth, cn, cvt[0]), 1161 ocl::convertTypeStr(sdepth, wdepth, cn, cvt[1]), 1165 ocl::typeToStr(sdepth), ocl::typeToStr(ddepth), cn); 1214 int sdepth = CV_MAT_DEPTH(srcType), ddepth = CV_MAT_DEPTH(sumType); local 1220 if( sdepth 1250 int sdepth = CV_MAT_DEPTH(sumType), ddepth = CV_MAT_DEPTH(dstType); local 1290 int sdepth = CV_MAT_DEPTH(srcType); local 1314 int stype = src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local [all...] |
H A D | filter.cpp | 3628 int sdepth = CV_MAT_DEPTH(srcType), ddepth = CV_MAT_DEPTH(bufType); local 3631 ddepth >= std::max(sdepth, CV_32S) && 3637 if( sdepth == CV_8U && ddepth == CV_32S ) 3640 if( sdepth == CV_32F && ddepth == CV_32F ) 3645 if( sdepth == CV_8U && ddepth == CV_32S ) 3648 if( sdepth == CV_8U && ddepth == CV_32F ) 3650 if( sdepth == CV_8U && ddepth == CV_64F ) 3652 if( sdepth == CV_16U && ddepth == CV_32F ) 3654 if( sdepth == CV_16U && ddepth == CV_64F ) 3656 if( sdepth 3683 int sdepth = CV_MAT_DEPTH(bufType), ddepth = CV_MAT_DEPTH(dstType); local 3784 int sdepth = CV_MAT_DEPTH(_srcType), ddepth = CV_MAT_DEPTH(_dstType); local 4009 int type = _src.type(), sdepth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 4453 int sdepth = CV_MAT_DEPTH(srcType), ddepth = CV_MAT_DEPTH(dstType); local 4589 int stype = src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype), local [all...] |
/external/opencv/cxcore/src/ |
H A D | cxsumpixels.cpp | 888 int sdepth, ddepth, cn, op0 = op; local 900 sdepth = CV_MAT_DEPTH(src->type); 919 int ttype = sdepth == CV_8U ? CV_MAKETYPE(CV_32S,cn) : dst->type; 933 (sdepth == CV_8U && ddepth == CV_32S ? (CvReduceToRowFunc)icvSumRows_8u32s_C1R : 934 sdepth == CV_8U && ddepth == CV_32F ? (CvReduceToRowFunc)icvSumRows_8u32f_C1R : 935 sdepth == CV_16U && ddepth == CV_32F ? (CvReduceToRowFunc)icvSumRows_16u32f_C1R : 936 sdepth == CV_16U && ddepth == CV_64F ? (CvReduceToRowFunc)icvSumRows_16u64f_C1R : 937 sdepth == CV_16S && ddepth == CV_32F ? (CvReduceToRowFunc)icvSumRows_16s32f_C1R : 938 sdepth == CV_16S && ddepth == CV_64F ? (CvReduceToRowFunc)icvSumRows_16s64f_C1R : 939 sdepth [all...] |
/external/opencv3/modules/core/test/ocl/ |
H A D | test_arithm.cpp | 1714 int sdepth, ddepth, cn, dim, dtype; local 1723 sdepth = p.first; 1732 const int stype = CV_MAKE_TYPE(sdepth, cn);
|
/external/opencv3/modules/calib3d/src/ |
H A D | fisheye.cpp | 362 int sdepth = distorted.depth(); local 366 Vec2d pi = sdepth == CV_32F ? (Vec2d)srcf[i] : srcd[i]; // image point 391 if( sdepth == CV_32F )
|
/external/opencv3/modules/core/src/ |
H A D | arithm.cpp | 5568 int sdepth = CV_MAT_DEPTH(stype), ldepth = CV_MAT_DEPTH(ltype), udepth = CV_MAT_DEPTH(utype); local 5596 if ( (!doubleSupport && sdepth == CV_64F) || 5597 (!haveScalar && (sdepth != ldepth || sdepth != udepth)) ) 5605 haveScalar ? "-D HAVE_SCALAR " : "", cn, ocl::typeToStr(CV_MAKE_TYPE(sdepth, kercn)), 5606 ocl::typeToStr(sdepth), ocl::typeToStr(CV_8UC(colsPerWI)), kercn, sdepth, 5628 if( ldepth != sdepth && sdepth < CV_32S ) 5636 int minval = cvRound(getMinVal(sdepth)), maxva [all...] |
H A D | ocl.cpp | 5348 const char* convertTypeStr(int sdepth, int ddepth, int cn, char* buf) argument 5350 if( sdepth == ddepth ) 5354 (ddepth == CV_32S && sdepth < CV_32S) || 5355 (ddepth == CV_16S && sdepth <= CV_8S) || 5356 (ddepth == CV_16U && sdepth == CV_8U)) 5360 else if( sdepth >= CV_32F )
|
/external/opencv3/modules/java/src/ |
H A D | imgproc.cpp | 1070 // void integral(Mat src, Mat& sum, int sdepth = -1) 1076 (JNIEnv* env, jclass , jlong src_nativeObj, jlong sum_nativeObj, jint sdepth) 1083 cv::integral( src, sum, (int)sdepth ); 3009 // void integral(Mat src, Mat& sum, Mat& sqsum, int sdepth = -1, int sqdepth = -1) 3015 (JNIEnv* env, jclass , jlong src_nativeObj, jlong sum_nativeObj, jlong sqsum_nativeObj, jint sdepth, jint sqdepth) 3023 cv::integral( src, sum, sqsum, (int)sdepth, (int)sqdepth ); 3059 // void integral(Mat src, Mat& sum, Mat& sqsum, Mat& tilted, int sdepth = -1, int sqdepth = -1) 3065 (JNIEnv* env, jclass , jlong src_nativeObj, jlong sum_nativeObj, jlong sqsum_nativeObj, jlong tilted_nativeObj, jint sdepth, jint sqdepth) 3074 cv::integral( src, sum, sqsum, tilted, (int)sdepth, (int)sqdepth ); 1075 Java_org_opencv_imgproc_Imgproc_integral_10(JNIEnv* env, jclass , jlong src_nativeObj, jlong sum_nativeObj, jint sdepth) argument 3014 Java_org_opencv_imgproc_Imgproc_integral2_10(JNIEnv* env, jclass , jlong src_nativeObj, jlong sum_nativeObj, jlong sqsum_nativeObj, jint sdepth, jint sqdepth) argument 3064 Java_org_opencv_imgproc_Imgproc_integral3_10(JNIEnv* env, jclass , jlong src_nativeObj, jlong sum_nativeObj, jlong sqsum_nativeObj, jlong tilted_nativeObj, jint sdepth, jint sqdepth) argument
|
H A D | imgproc+Imgproc.java | 579 // C++: void integral(Mat src, Mat& sum, int sdepth = -1) 582 //javadoc: integral(src, sum, sdepth) 583 public static void integral(Mat src, Mat sum, int sdepth) argument 586 integral_0(src.nativeObj, sum.nativeObj, sdepth); 1455 // C++: void integral(Mat src, Mat& sum, Mat& sqsum, int sdepth = -1, int sqdepth = -1) 1458 //javadoc: integral(src, sum, sqsum, sdepth, sqdepth) 1459 public static void integral2(Mat src, Mat sum, Mat sqsum, int sdepth, int sqdepth) argument 1462 integral2_0(src.nativeObj, sum.nativeObj, sqsum.nativeObj, sdepth, sqdepth); 1478 // C++: void integral(Mat src, Mat& sum, Mat& sqsum, Mat& tilted, int sdepth = -1, int sqdepth = -1) 1481 //javadoc: integral(src, sum, sqsum, tilted, sdepth, sqdept 1482 integral3(Mat src, Mat sum, Mat sqsum, Mat tilted, int sdepth, int sqdepth) argument 2900 integral_0(long src_nativeObj, long sum_nativeObj, int sdepth) argument 3045 integral2_0(long src_nativeObj, long sum_nativeObj, long sqsum_nativeObj, int sdepth, int sqdepth) argument 3049 integral3_0(long src_nativeObj, long sum_nativeObj, long sqsum_nativeObj, long tilted_nativeObj, int sdepth, int sqdepth) argument [all...] |