Home
last modified time | relevance | path

Searched refs:CMP_GE (Results 1 – 13 of 13) sorted by relevance

/external/opencv3/modules/core/perf/
Dperf_compare.cpp9 CV_ENUM(CmpType, CMP_EQ, CMP_GT, CMP_GE, CMP_LT, CMP_LE, CMP_NE)
/external/deqp/framework/randomshaders/
DrsgToken.hpp98 CMP_GE, enumerator
DrsgBinaryOps.cpp609 : GreaterOrEqualBase(state, Token::CMP_GE, valueRange) in GreaterOrEqualOp()
/external/opencv3/modules/cudaarithm/src/cuda/
Dcmp_scalar.cu213 cmpop = cmpop == cv::CMP_LT ? cv::CMP_GT : cmpop == cv::CMP_LE ? cv::CMP_GE : in cmpScalar()
214 cmpop == cv::CMP_GE ? cv::CMP_LE : cmpop == cv::CMP_GT ? cv::CMP_LT : cmpop; in cmpScalar()
/external/opencv3/modules/core/src/
Darithm.cpp4492 if( code == CMP_GE || code == CMP_LT ) in cmp_()
4496 code = code == CMP_GE ? CMP_LE : CMP_GT; in cmp_()
4552 _cmpop == CMP_GE ? ippCmpGreaterEq : in convert_cmp()
4582 if( code == CMP_GE || code == CMP_LT ) in cmp8u()
4586 code = code == CMP_GE ? CMP_LE : CMP_GT; in cmp8u()
4712 if( code == CMP_GE || code == CMP_LT ) in cmp16s()
4716 code = code == CMP_GE ? CMP_LE : CMP_GT; in cmp16s()
4945 … return dst.setTo(Scalar::all(op == CMP_GT || op == CMP_GE || op == CMP_NE ? 255 : 0)), true; in ocl_compare()
4953 if( op == CMP_LT || op == CMP_GE ) in ocl_compare()
4988 op == CMP_NE || op == CMP_GE || op == CMP_GT ); in compare()
[all …]
/external/opencv3/modules/core/include/opencv2/core/
Dbase.hpp182 CMP_GE = 2, //!< src1 is greater than or equal to src2. enumerator
/external/opencv3/modules/core/perf/opencl/
Dperf_arithm.cpp553 CV_ENUM(CmpCode, CMP_LT, CMP_LE, CMP_EQ, CMP_NE, CMP_GE, CMP_GT)
/external/opencv3/modules/cudaarithm/perf/
Dperf_element_operations.cpp632 CV_ENUM(CmpCode, cv::CMP_EQ, cv::CMP_GT, cv::CMP_GE, cv::CMP_LT, cv::CMP_LE, cv::CMP_NE)
/external/opencv3/modules/cudaarithm/test/
Dtest_element_operations.cpp1835 CV_ENUM(CmpCode, cv::CMP_EQ, cv::CMP_GT, cv::CMP_GE, cv::CMP_LT, cv::CMP_LE, cv::CMP_NE) in CV_ENUM() argument
1836 …pCode(cv::CMP_EQ), CmpCode(cv::CMP_NE), CmpCode(cv::CMP_GT), CmpCode(cv::CMP_GE), CmpCode(cv::CMP_… in CV_ENUM()
/external/opencv3/modules/java/src/
Dcore+Core.java126 CMP_GE = 2, field in Core
/external/opencv3/modules/ts/src/
Dts_func.cpp1583 case CMP_GE: in compare_()
1619 case CMP_GE: in compareS_()
/external/opencv3/modules/core/test/ocl/
Dtest_arithm.cpp780 static const int cmp_codes[] = { CMP_EQ, CMP_GT, CMP_GE, CMP_LT, CMP_LE, CMP_NE };
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java224 Core.compare(gray0, grayRnd, dst, Core.CMP_GE); in testCompare()