Home
last modified time | relevance | path

Searched refs:IPL_DEPTH_SIGN (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/
H A Dtypes_c.h283 #define IPL_DEPTH_SIGN 0x80000000 macro
290 #define IPL_DEPTH_8S (IPL_DEPTH_SIGN| 8)
291 #define IPL_DEPTH_16S (IPL_DEPTH_SIGN|16)
292 #define IPL_DEPTH_32S (IPL_DEPTH_SIGN|32)
545 (((depth) & IPL_DEPTH_SIGN) ? 20 : 0))) & 15)
667 depth == CV_32S ? IPL_DEPTH_SIGN : 0); in cvIplDepth()
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Darray.cpp2967 (image->depth & ~IPL_DEPTH_SIGN) + 7)/8)+ align - 1) & (~(align - 1)); in cvInitImageHeader()