/external/opencv3/modules/cudaarithm/src/cuda/ |
minmax.cu | 107 const int src_depth = src.depth(); 108 const int dst_depth = src_depth < CV_32F ? CV_32S : src_depth; 178 const int src_depth = src.depth(); 179 const int dst_depth = src_depth < CV_32F ? CV_32S : src_depth;
|
normalize.cu | 254 const int src_depth = src.depth(); 255 const int tmp_depth = src_depth <= CV_32F ? CV_32F : src_depth; 271 const func_minmax_t func = funcs_minmax[src_depth]; 276 const func_norm_t func = funcs_norm[src_depth];
|
sum.cu | 126 const int src_depth = src.depth(); 131 const func_t func = funcs[src_depth][channels - 1]; 171 const int src_depth = src.depth(); 176 const func_t func = funcs[src_depth][channels - 1]; 216 const int src_depth = src.depth(); 221 const func_t func = funcs[src_depth][channels - 1];
|
minmaxloc.cu | 95 const int src_depth = src.depth(); 101 const func_t func = funcs[src_depth];
|
/external/opencv3/modules/core/test/ocl/ |
test_matrix_operation.cpp | 59 int src_depth, cn, dstType; local 67 src_depth = GET_PARAM(0); 78 randomSubMat(src, src_roi, roiSize, srcBorder, CV_MAKE_TYPE(src_depth, cn), -MAX_VALUE, MAX_VALUE);
|
test_arithm.cpp | 56 int src_depth, lut_depth; local 66 src_depth = GET_PARAM(0); 75 const int src_type = CV_MAKE_TYPE(src_depth, cn); [all...] |
/external/opencv/otherlibs/highgui/ |
utils.cpp | 600 int src_depth = CV_MAT_DEPTH(src->type); local 601 double scale = src_depth <= CV_8S ? 1 : src_depth <= CV_32S ? 1./256 : 255; 602 double shift = src_depth == CV_8S || src_depth == CV_16S ? 128 : 0;
|
/external/opencv3/modules/imgcodecs/src/ |
utils.cpp | 621 int src_depth = CV_MAT_DEPTH(src->type); local 622 double scale = src_depth <= CV_8S ? 1 : src_depth <= CV_32S ? 1./256 : 255; 623 double shift = src_depth == CV_8S || src_depth == CV_16S ? 128 : 0;
|
/external/opencv/cxcore/src/ |
cxmathfuncs.cpp | 1027 int coi1 = 0, coi2 = 0, src_depth, dst_depth; local 1586 int coi1 = 0, coi2 = 0, src_depth, dst_depth; local [all...] |
/external/opencv3/modules/imgproc/test/ |
test_imgwarp.cpp | 1275 int msz, src_depth = cvtest::randInt(rng) % 2, dst_depth; local [all...] |
/external/opencv/cv/src/ |
cvderiv.cpp | 407 int src_depth = CV_MAT_DEPTH(_src_type), dst_depth = CV_MAT_DEPTH(_dst_type); 413 if( ((src_depth != CV_8U || (dst_depth != CV_16S && dst_depth != CV_32F)) && 414 (src_depth != CV_32F || dst_depth != CV_32F)) || 433 if( src_depth == CV_8U ) 446 else if( src_depth == CV_32F ) [all...] |
/external/opencv3/modules/stitching/src/opencl/ |
multibandblend.cl | 225 #if src_DEPTH == 3 && src_CN == 3
|
/external/opencv3/modules/stitching/ |
opencl_kernels_stitching.cpp | 164 "#if src_DEPTH == 3 && src_CN == 3\n"
|