Searched defs:CV_FAST_CAST_8U (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cv/src/
H A D_cv.h72 #define CV_FAST_CAST_8U(t) (assert(-256 <= (t) || (t) <= 512), icvSaturate8u_cv[(t)+256]) macro
73 #define CV_CALC_MIN_8U(a,b) (a) -= CV_FAST_CAST_8U((a) - (b))
74 #define CV_CALC_MAX_8U(a,b) (a) += CV_FAST_CAST_8U((b) - (a))
/external/opencv/cxcore/src/
H A D_cxcore.h85 #define CV_FAST_CAST_8U(t) (assert(-256 <= (t) && (t) <= 512), icvSaturate8u[(t)+256]) macro
86 #define CV_MIN_8U(a,b) ((a) - CV_FAST_CAST_8U((a) - (b)))
87 #define CV_MAX_8U(a,b) ((a) + CV_FAST_CAST_8U((b) - (a)))

Completed in 250 milliseconds