Searched defs:src_depth (Results 1 - 6 of 6) sorted by relevance

/external/opencv3/modules/core/test/ocl/
H A Dtest_matrix_operation.cpp59 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);
H A Dtest_arithm.cpp56 int src_depth, lut_depth; local
66 src_depth = GET_PARAM(0);
75 const int src_type = CV_MAKE_TYPE(src_depth, cn);
/external/opencv/otherlibs/highgui/
H A Dutils.cpp600 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/
H A Dutils.cpp621 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/
H A Dcxmathfuncs.cpp1027 int coi1 = 0, coi2 = 0, src_depth, dst_depth; local
1041 src_depth = CV_MAT_DEPTH(src->type);
1044 if( !CV_ARE_CNS_EQ( src, dst ) || src_depth < CV_32F || dst_depth < src_depth )
1070 if( src_depth == CV_64F )
1074 else if( src_depth == dst_depth )
1586 int coi1 = 0, coi2 = 0, src_depth, dst_depth; local
1600 src_depth = CV_MAT_DEPTH(src->type);
1603 if( !CV_ARE_CNS_EQ( src, dst ) || dst_depth < CV_32F || src_depth < dst_depth )
1633 else if( src_depth
[all...]
/external/opencv3/modules/imgproc/test/
H A Dtest_imgwarp.cpp1167 int src_depth = cvtest::randInt(rng) % 2, dst_depth;
1171 dst_depth = src_depth = src_depth == 0 ? CV_8U : CV_32F;
1172 if( src_depth < CV_32F && cvtest::randInt(rng) % 2 )
1175 types[INPUT][0] = CV_MAKETYPE(src_depth,cn);
1275 int msz, src_depth = cvtest::randInt(rng) % 2, dst_depth; local
1278 dst_depth = src_depth = src_depth == 0 ? CV_8U : CV_32F;
1279 if( src_depth < CV_32F && cvtest::randInt(rng) % 2 )
1282 types[INPUT][0] = CV_MAKETYPE(src_depth,c
[all...]

Completed in 6512 milliseconds