Home
last modified time | relevance | path

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

/external/opencv3/modules/cudalegacy/src/cuda/
DNPP_staging.cu2399 NcvRect32u dstROI, in resizeSuperSample_32f() argument
2407 if (ix >= dstROI.width || iy >= dstROI.height) in resizeSuperSample_32f()
2457 dst[(ix + dstROI.x) + (iy + dstROI.y) * dstStep] = sum; in resizeSuperSample_32f()
2486 NcvRect32u dstROI, in resizeBicubic() argument
2493 if (ix >= dstROI.width || iy >= dstROI.height) in resizeBicubic()
2546 dst[(ix + dstROI.x)+ (iy + dstROI.y) * dstStep] = (!wsum)? 0 : sum / wsum; in resizeBicubic()
2557 NcvRect32u dstROI, in nppiStResize_32f_C1R() argument
2582 dim3 gridSize ((dstROI.width + ctaSize.x - 1) / ctaSize.x, in nppiStResize_32f_C1R()
2583 (dstROI.height + ctaSize.y - 1) / ctaSize.y); in nppiStResize_32f_C1R()
2586 … (srcSize, srcStep, srcROI, pDst, dstSize, dstStep, dstROI, 1.0f / xFactor, 1.0f / yFactor); in nppiStResize_32f_C1R()
[all …]
DNCVBroxOpticalFlow.cu878 NcvRect32u dstROI (0, 0, level_width, level_height); in NCVBroxOpticalFlow() local
882 …level_frame0->ptr(), dstSize, level_width_aligned * sizeof (float), dstROI, scale_factor, scale_fa… in NCVBroxOpticalFlow()
886 …level_frame1->ptr(), dstSize, level_width_aligned * sizeof (float), dstROI, scale_factor, scale_fa… in NCVBroxOpticalFlow()
1129 NcvRect32u dstROI (0, 0, nw, nh); in NCVBroxOpticalFlow() local
1132 …ptrUNew->ptr(), dstSize, ns * sizeof (float), dstROI, 1.0f/scale_factor, 1.0f/scale_factor, nppStB… in NCVBroxOpticalFlow()
1138 …ptrVNew->ptr(), dstSize, ns * sizeof (float), dstROI, 1.0f/scale_factor, 1.0f/scale_factor, nppStB… in NCVBroxOpticalFlow()
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
DNPP_staging.hpp329 NcvRect32u dstROI,