Home
last modified time | relevance | path

Searched refs:boxAreaInv (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudaoptflow/src/cuda/
Dfarneback.cu359 const int ksizeHalf, const float boxAreaInv, PtrStepf dst) in boxFilter5() argument
409 dst(k*height + y, x) = res[k] * boxAreaInv; in boxFilter5()
424 float boxAreaInv = 1.f / ((1 + 2*ksizeHalf) * (1 + 2*ksizeHalf)); in boxFilter5Gpu() local
425 boxFilter5<<<grid, block, smem, stream>>>(height, width, src, ksizeHalf, boxAreaInv, dst); in boxFilter5Gpu()
443 float boxAreaInv = 1.f / ((1 + 2*ksizeHalf) * (1 + 2*ksizeHalf)); in boxFilter5Gpu_CC11() local
444 boxFilter5<<<grid, block, smem, stream>>>(height, width, src, ksizeHalf, boxAreaInv, dst); in boxFilter5Gpu_CC11()
/external/opencv3/modules/video/src/opencl/
Doptical_flow_farneback.cl359 const float boxAreaInv = 1.f / ((1 + 2*ksizeHalf) * (1 + 2*ksizeHalf));
404 dst[mad24(k*rows + y, dstStep, x)] = res[k] * boxAreaInv;