Searched refs:l_t (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/cudaoptflow/src/cuda/ |
D | tvl1flow.cu | 221 … const float l_t, const float theta, const float gamma, const bool calcError) in estimateUKernel() argument 244 if (rho < -l_t * gradVal) in estimateUKernel() 246 d1 = l_t * I1wxVal; in estimateUKernel() 247 d2 = l_t * I1wyVal; in estimateUKernel() 249 d3 = l_t * gamma; in estimateUKernel() 251 else if (rho > l_t * gradVal) in estimateUKernel() 253 d1 = -l_t * I1wxVal; in estimateUKernel() 254 d2 = -l_t * I1wyVal; in estimateUKernel() 256 d3 = -l_t * gamma; in estimateUKernel() 300 float l_t, float theta, float gamma, bool calcError, in estimateU() argument [all …]
|
/external/opencv3/modules/video/src/ |
D | tvl1flow.cpp | 211 UMat &u2, UMat &error, float l_t, float theta, char calc_error); 282 UMat &u2, UMat &error, float l_t, float theta, char calc_error) in estimateU() argument 306 idxArg = kernel.set(idxArg, (float)l_t); //float l_t in estimateU() 952 float l_t; member 980 if (rho < -l_t * gradRow[x]) in operator ()() 982 d1 = l_t * I1wxRow[x]; in operator ()() 983 d2 = l_t * I1wyRow[x]; in operator ()() 984 if (use_gamma) d3 = l_t * gamma; in operator ()() 986 else if (rho > l_t * gradRow[x]) in operator ()() 988 d1 = -l_t * I1wxRow[x]; in operator ()() [all …]
|
/external/opencv3/modules/video/src/opencl/ |
D | optical_flow_tvl1.cl | 313 __global float* error, float l_t, float theta, int u2_step, 338 if (rho < -l_t * gradVal) 340 d1 = l_t * I1wxVal; 341 d2 = l_t * I1wyVal; 343 else if (rho > l_t * gradVal) 345 d1 = -l_t * I1wxVal; 346 d2 = -l_t * I1wyVal;
|
/external/opencv3/modules/cudaoptflow/src/ |
D | tvl1flow.cpp | 66 float l_t, float theta, float gamma, bool calcError, 341 const float l_t = static_cast<float>(lambda_ * theta_); in procOneScale() local 354 …U(I1wx, I1wy, grad, rho_c, p11, p12, p21, p22, p31, p32, u1, u2, u3, diff, l_t, static_cast<float>… in procOneScale()
|