MCPcopy Create free account
hub / github.com/creatale/node-dv / convert_cmp

Function convert_cmp

deps/opencv/modules/core/src/arithm.cpp:2197–2205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2195
2196#if ARITHM_USE_IPP
2197inline static IppCmpOp convert_cmp(int _cmpop)
2198{
2199 return _cmpop == CMP_EQ ? ippCmpEq :
2200 _cmpop == CMP_GT ? ippCmpGreater :
2201 _cmpop == CMP_GE ? ippCmpGreaterEq :
2202 _cmpop == CMP_LT ? ippCmpLess :
2203 _cmpop == CMP_LE ? ippCmpLessEq :
2204 (IppCmpOp)-1;
2205}
2206#endif
2207
2208static void cmp8u(const uchar* src1, size_t step1, const uchar* src2, size_t step2,

Callers 4

cmp8uFunction · 0.85
cmp16uFunction · 0.85
cmp16sFunction · 0.85
cmp32fFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected