Home
last modified time | relevance | path

Searched refs:getConvertFunc (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/core/src/
Dprecomp.hpp83 BinaryFunc getConvertFunc(int sdepth, int ddepth);
Darithm.cpp1412 getConvertFunc(sc.depth(), buftype)(sc.ptr(), 1, 0, 1, scbuf, 1, Size(std::min(cn, scn), 1), 0); in convertAndUnrollScalar()
2055 BinaryFunc cvtsrc1 = type1 == wtype ? 0 : getConvertFunc(type1, wtype); in arithm_op()
2056 … BinaryFunc cvtsrc2 = type2 == type1 ? cvtsrc1 : type2 == wtype ? 0 : getConvertFunc(type2, wtype); in arithm_op()
2057 BinaryFunc cvtdst = dtype == wtype ? 0 : getConvertFunc(wtype, dtype); in arithm_op()
4943 getConvertFunc(depth2, CV_64F)(src2.ptr(), 1, 0, 1, (uchar *)&fval, 1, Size(1, 1), 0); in ocl_compare()
5064 getConvertFunc(depth2, CV_64F)(src2.ptr(), 1, 0, 1, (uchar*)&fval, 1, Size(1,1), 0); in compare()
5633 BinaryFunc sccvtfunc = getConvertFunc(ldepth, CV_32S); in ocl_inRange()
5744 BinaryFunc sccvtfunc = getConvertFunc(scdepth, CV_32S); in inRange()
Dconvert.cpp5384 BinaryFunc getConvertFunc(int sdepth, int ddepth) in getConvertFunc() function
5586 … BinaryFunc func = noScale ? getConvertFunc(sdepth, ddepth) : getConvertScaleFunc(sdepth, ddepth); in convertTo()