Searched refs:src_depth (Results 1 - 3 of 3) sorted by relevance

/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/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/opencv/cv/src/
H A Dcvderiv.cpp407 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 )

Completed in 62 milliseconds