Home
last modified time | relevance | path

Searched refs:I1wy (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/cudaoptflow/src/cuda/
Dtvl1flow.cu108 …nst PtrStepf u1, const PtrStepf u2, PtrStepf I1w, PtrStepf I1wx, PtrStepf I1wy, PtrStepf grad, Ptr… in warpBackwardKernel() argument
155 I1wy(y, x) = I1wyVal; in warpBackwardKernel()
170 PtrStepSzf I1wy, PtrStepSzf grad, PtrStepSzf rho, in warpBackward() argument
180 warpBackwardKernel<<<grid, block, 0, stream>>>(I0, u1, u2, I1w, I1wx, I1wy, grad, rho); in warpBackward()
215 __global__ void estimateUKernel(const PtrStepSzf I1wx, const PtrStepf I1wy, in estimateUKernel() argument
230 const float I1wyVal = I1wy(y, x); in estimateUKernel()
296 void estimateU(PtrStepSzf I1wx, PtrStepSzf I1wy, in estimateU() argument
306 …estimateUKernel<<<grid, block, 0, stream>>>(I1wx, I1wy, grad, rho_c, p11, p12, p21, p22, p31, p32,… in estimateU()
/external/opencv3/modules/video/src/
Dtvl1flow.cpp205 UMat &u1, UMat &u2, UMat &I1w, UMat &I1wx, UMat &I1wy,
208 bool estimateU(UMat &I1wx, UMat &I1wy, UMat &grad,
237 UMat &u1, UMat &u2, UMat &I1w, UMat &I1wx, UMat &I1wy, in warpBackward() argument
263 idxArg = kernel.set(idxArg, ocl::KernelArg::PtrWriteOnly(I1wy));//float* I1wy in warpBackward()
279 bool cv_ocl_tvl1flow::estimateU(UMat &I1wx, UMat &I1wy, UMat &grad, in estimateU() argument
295 idxArg = kernel.set(idxArg, ocl::KernelArg::PtrReadOnly(I1wy)); //const float* I1wy in estimateU()
875 Mat_<float> I1wy; member
889 const float* I1wyRow = I1wy[y]; in operator ()()
910 …& I0, const Mat_<float>& I1w, const Mat_<float>& I1wx, const Mat_<float>& I1wy, const Mat_<float>&… in calcGradRho() argument
915 CV_DbgAssert( I1wy.size() == I0.size() ); in calcGradRho()
[all …]
/external/opencv3/modules/cudaoptflow/src/
Dtvl1flow.cpp59 PtrStepSzf I1w, PtrStepSzf I1wx, PtrStepSzf I1wy,
62 void estimateU(PtrStepSzf I1wx, PtrStepSzf I1wy,
314 GpuMat I1wy = I1wy_buf(Rect(0, 0, I0.cols, I0.rows)); in procOneScale() local
346 warpBackward(I0, I1, I1x, I1y, u1, u2, I1w, I1wx, I1wy, grad, rho_c, stream); in procOneScale()
354 …estimateU(I1wx, I1wy, grad, rho_c, p11, p12, p21, p22, p31, p32, u1, u2, u3, diff, l_t, static_cas… in procOneScale()
/external/opencv3/modules/video/src/opencl/
Doptical_flow_tvl1.cl83 __global float* I1wy, /*int I1wy_step,*/
138 I1wy[y * I1w_step + x] = I1wyVal;
165 __global float* I1wy, /*int I1wy_step,*/
219 I1wy[y * I1w_step + x] = I1wyVal;
304 __global const float* I1wy, /*int I1wy_step,*/
326 float I1wyVal = I1wy[y * I1wx_step + x];