Home
last modified time | relevance | path

Searched refs:CV_MIN_8U (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/core/src/
Dprecomp.hpp106 #define CV_MIN_8U(a,b) ((a) - CV_FAST_CAST_8U((a) - (b))) macro
Darithm.cpp949 template<> inline uchar OpMin<uchar>::operator ()(uchar a, uchar b) const { return CV_MIN_8U(a, b);… in operator ()()
/external/opencv/cxcore/src/
D_cxcore.h86 #define CV_MIN_8U(a,b) ((a) - CV_FAST_CAST_8U((a) - (b))) macro
Dcxsumpixels.cpp839 ICV_ACC_ROWS_FUNC( Min, 8u, uchar, uchar, CV_MIN_8U, CV_NOP )
866 ICV_ACC_COLS_FUNC_C1( Min, 8u, uchar, int, uchar, CV_MIN_8U )
Dcxcmp.cpp943 ICV_DEF_MINMAX_ALL( 8u, uchar, int, CV_NOP, CV_MIN_8U, CV_MAX_8U )
/external/opencv3/modules/imgproc/src/
Dmorph.cpp70 #undef CV_MIN_8U
72 #define CV_MIN_8U(a,b) ((a) - CV_FAST_CAST_8U((a) - (b))) macro
75 …ine uchar MinOp<uchar>::operator ()(const uchar a, const uchar b) const { return CV_MIN_8U(a, b); } in operator ()()