Home
last modified time | relevance | path

Searched refs:CV_MAT_DEPTH_MASK (Results 1 – 4 of 4) sorted by relevance

/external/opencv/cxcore/include/
Dcxtypes.h527 #define CV_MAT_DEPTH_MASK (CV_DEPTH_MAX - 1) macro
528 #define CV_MAT_DEPTH(flags) ((flags) & CV_MAT_DEPTH_MASK)
600 ((((mat1)->type ^ (mat2)->type) & CV_MAT_DEPTH_MASK) == 0)
/external/opencv/otherlibs/highgui/
Dutils.cpp607 (src->type & CV_MAT_CN_MASK)|(dst->type & CV_MAT_DEPTH_MASK)); in cvConvertImage()
/external/opencv/cv/src/
Dcvfilter.cpp883 kx->type = (kx->type & ~CV_MAT_DEPTH_MASK) | CV_32S; in init()
884 ky->type = (ky->type & ~CV_MAT_DEPTH_MASK) | CV_32S; in init()
2291 …mp_size.width = cvAlign(src->cols + ksize.width - 1,8/CV_ELEM_SIZE(src->type & CV_MAT_DEPTH_MASK)); in icvIPPFilterInit()
/external/opencv/cxcore/src/
Dcxarray.cpp1705 int depth = type & CV_MAT_DEPTH_MASK; in cvScalarToRawData()