/external/opencv3/modules/imgproc/src/ |
D | accum.cpp | 867 ippiAdd ippFunc = 0; in accumulate() local 873 ippFunc = sdepth == CV_8U && ddepth == CV_32F ? (ippiAdd)ippiAdd_8u32f_C1IR : in accumulate() local 885 if (ippFunc || ippFuncMask) in accumulate() 902 …status = ippFunc(src.ptr(), srcstep, dst.ptr<Ipp32f>(), dststep, ippiSize(size.width, size.height)… in accumulate() 952 ippiAddSquare ippFunc = 0; in accumulateSquare() local 957 … ippFunc = sdepth == CV_8U && ddepth == CV_32F ? (ippiAddSquare)ippiAddSquare_8u32f_C1IR : in accumulateSquare() 968 if (ippFunc || ippFuncMask) in accumulateSquare() 985 …status = ippFunc(src.ptr(), srcstep, dst.ptr<Ipp32f>(), dststep, ippiSize(size.width, size.height)… in accumulateSquare() 1038 ippiAddProduct ippFunc = 0; in accumulateProduct() local 1043 … ippFunc = sdepth == CV_8U && ddepth == CV_32F ? (ippiAddProduct)ippiAddProduct_8u32f_C1IR : in accumulateProduct() [all …]
|
D | templmatch.cpp | 579 ippimatchTemplate ippFunc = in ipp_crossCorr() local 583 if (ippFunc==0) in ipp_crossCorr() 594 …status = ippFunc(src.ptr(), (int)src.step, srcRoiSize, tpl.ptr(), (int)tpl.step, tplRoiSize, dst.p… in ipp_crossCorr() 612 ippimatchTemplate ippFunc = in ipp_sqrDistance() local 616 if (ippFunc==0) in ipp_sqrDistance() 627 …status = ippFunc(src.ptr(), (int)src.step, srcRoiSize, tpl.ptr(), (int)tpl.step, tplRoiSize, dst.p… in ipp_sqrDistance()
|
D | moments.cpp | 594 ippiMoments ippFunc = in moments() local 599 if (ippFunc) in moments() 601 if (ippFunc(mat.data, (int)mat.step, roi, moment) >= 0) in moments()
|
D | imgwarp.cpp | 4582 ParallelLoopBody(), src(_src), dst(_dst), map1(_xmap), map2(_ymap), ippFunc(_ippFunc), in IPPRemapInvoker() 4602 if (ippFunc(src.ptr(), ippiSize(src.size()), (int)src.step, srcRoiRect, in operator ()() 4614 ippiRemap ippFunc; member in cv::IPPRemapInvoker 4689 ippiRemap ippFunc = in remap() local 4700 if (ippFunc) in remap() 4703 IPPRemapInvoker invoker(src, dst, map1, map2, ippFunc, ippInterpolation, in remap() 5618 ippiWarpAffineBackFunc ippFunc = 0; in warpAffine() local 5621 ippFunc = in warpAffine() 5635 ippFunc = in warpAffine() 5652 CV_Assert(mode && ippFunc); in warpAffine() [all …]
|
D | filter.cpp | 4598 ippiFilterBorder ippFunc = in filter2D() local 4613 ippFunc && (int)ippBorderType >= 0 && (!src.isSubmatrix() || isolated) && in filter2D() 4635 … status = ippFunc(src.data, (int)src.step, dst.data, (int)dst.step, dstRoiSize, in filter2D()
|
/external/opencv3/modules/core/src/ |
D | copy.cpp | 761 ippiMirror ippFunc = 0; in flip() local 787 ippFunc = in flip() 808 if (ippFunc != 0) in flip() 810 …if (ippFunc(src.ptr(), (int)src.step, dst.ptr(), (int)dst.step, ippiSize(src.cols, src.rows), axis… in flip() 1197 ippiCopyMakeBorder ippFunc = 0; in copyMakeBorder() local 1233 ippFunc = in copyMakeBorder() 1263 ippFunc = in copyMakeBorder() 1282 if (ippFunc || ippFuncI || ippFuncConst) in copyMakeBorder() 1287 …if ( (ippFunc && ippFunc(src.data, (int)src.step, srcRoiSize, dst.data, (int)dst.step, dstRoiSize,… in copyMakeBorder()
|
D | matrix.cpp | 3124 ippiTranspose ippFunc = 0; in transpose() local 3150 ippFunc = in transpose() 3169 if (ippFunc != 0) in transpose() 3171 if (ippFunc(src.ptr(), (int)src.step, dst.ptr(), (int)dst.step, roiSize) >= 0) in transpose() 3388 ippiSum ippFunc = 0; in reduceSumC_8u16u16s32f_64f() local 3394 ippFunc = in reduceSumC_8u16u16s32f_64f() 3414 CV_Assert(!(ippFunc && ippFuncHint) && func); in reduceSumC_8u16u16s32f_64f() 3418 if (ippFunc) in reduceSumC_8u16u16s32f_64f() 3421 if (ippFunc(srcmat.ptr(y), sstep, roisize, dstmat.ptr<Ipp64f>(y)) < 0) in reduceSumC_8u16u16s32f_64f() 3967 IppSortIndexFunc ippFunc = 0; in sortIdx_() local [all …]
|
D | mathfuncs.cpp | 643 ippsPolarToCart ippFunc = in polarToCart() local 646 CV_Assert(ippFunc != 0); in polarToCart() 648 …IppStatus status = ippFunc(Mag.ptr(), Angle.ptr(), X.ptr(), Y.ptr(), static_cast<int>(cn * X.total… in polarToCart()
|
D | dxt.cpp | 3406 ippiDCTFunc ippFunc = inv ? (ippiDCTFunc)ippiDCTInv_32f_C1R : (ippiDCTFunc)ippiDCTFwd_32f_C1R ; in ippi_DCT_32f() local 3409 return(DctIPPLoop(src,dst,IPPDCTFunctor(ippFunc),inv)); in ippi_DCT_32f() 3433 …status = ippFunc(src.ptr<float>(), (int)src.step, dst.ptr<float>(), (int)dst.step, pDCTSpec, (Ipp8… in ippi_DCT_32f()
|