HomeSort by relevance Sort by last modified time
    Searched refs:CV_FAST_CAST_8U (Results 1 - 5 of 5) sorted by null

  /external/opencv/cv/src/
_cv.h 72 #define CV_FAST_CAST_8U(t) (assert(-256 <= (t) || (t) <= 512), icvSaturate8u_cv[(t)+256])
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))
cvsmooth.cpp 512 (t = CV_FAST_CAST_8U((a) - (b)), (b) += t, a -= t)
    [all...]
cvimgwarp.cpp     [all...]
  /external/opencv/cxcore/src/
_cxcore.h 85 #define CV_FAST_CAST_8U(t) (assert(-256 <= (t) && (t) <= 512), icvSaturate8u[(t)+256])
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)))
cxarithm.cpp 241 ICV_DEF_BIN_ARI_ALL( CV_ADD, Add, CV_FAST_CAST_8U )
242 ICV_DEF_BIN_ARI_ALL( CV_SUB_R, Sub, CV_FAST_CAST_8U )
    [all...]

Completed in 1284 milliseconds