HomeSort by relevance Sort by last modified time
    Searched defs:CV_MAT_DEPTH (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/core/include/opencv2/core/
cvdef.h 111 #define CV_MAT_DEPTH(flags) ((flags) & CV_MAT_DEPTH_MASK)
113 #define CV_MAKETYPE(depth,cn) (CV_MAT_DEPTH(depth) + (((cn)-1) << CV_CN_SHIFT))
173 ((((sizeof(size_t)<<28)|0x8442211) >> CV_MAT_DEPTH(type)*4) & 15)
177 (CV_MAT_CN(type) << ((((sizeof(size_t)/4+1)*16384|0x3a50) >> CV_MAT_DEPTH(type)*2) & 3))
  /external/opencv/cxcore/include/
cxtypes.h 528 #define CV_MAT_DEPTH(flags) ((flags) & CV_MAT_DEPTH_MASK)
611 ((((sizeof(size_t)<<28)|0x8442211) >> CV_MAT_DEPTH(type)*4) & 15)
615 (CV_MAT_CN(type) << ((((sizeof(size_t)/4+1)*16384|0x3a50) >> CV_MAT_DEPTH(type)*2) & 3))
625 assert( (unsigned)CV_MAT_DEPTH(type) <= CV_64F );
688 int depth = CV_MAT_DEPTH(type);
    [all...]

Completed in 73 milliseconds