Lines Matching refs:flowx
157 const int height, const int width, const PtrStepf flowx, const PtrStepf flowy,
165 float dx = flowx(y, x);
252 const PtrStepSzf flowx, const PtrStepSzf flowy, const PtrStepSzf R0, const PtrStepSzf R1,
256 dim3 grid(divUp(flowx.cols, block.x), divUp(flowx.rows, block.y));
258 updateMatrices<<<grid, block, 0, stream>>>(flowx.rows, flowx.cols, flowx, flowy, R0, R1, M);
268 const int height, const int width, const PtrStepf M, PtrStepf flowx, PtrStepf flowy)
283 flowx(y, x) = (g11*h2 - g12*h1) * detInv;
289 void updateFlowGpu(const PtrStepSzf M, PtrStepSzf flowx, PtrStepSzf flowy, cudaStream_t stream)
292 dim3 grid(divUp(flowx.cols, block.x), divUp(flowx.rows, block.y));
294 updateFlow<<<grid, block, 0, stream>>>(flowx.rows, flowx.cols, M, flowx, flowy);