HomeSort by relevance Sort by last modified time
    Searched refs:l_t (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/cudaoptflow/src/cuda/
tvl1flow.cu 221 const float l_t, const float theta, const float gamma, const bool calcError)
244 if (rho < -l_t * gradVal)
246 d1 = l_t * I1wxVal;
247 d2 = l_t * I1wyVal;
249 d3 = l_t * gamma;
251 else if (rho > l_t * gradVal)
253 d1 = -l_t * I1wxVal;
254 d2 = -l_t * I1wyVal;
256 d3 = -l_t * gamma;
300 float l_t, float theta, float gamma, bool calcError
    [all...]
  /external/opencv3/modules/video/src/opencl/
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/video/src/
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)
306 idxArg = kernel.set(idxArg, (float)l_t); //float l_t
952 float l_t; member in struct:__anon22671::EstimateVBody
1227 const float l_t = static_cast<float>(lambda * theta); local
1323 const float l_t = static_cast<float>(lambda * theta); local
    [all...]
  /external/opencv3/modules/cudaoptflow/src/
tvl1flow.cpp 66 float l_t, float theta, float gamma, bool calcError,
341 const float l_t = static_cast<float>(lambda_ * theta_); local
354 estimateU(I1wx, I1wy, grad, rho_c, p11, p12, p21, p22, p31, p32, u1, u2, u3, diff, l_t, static_cast<float>(theta_), gamma_, calcError, stream);

Completed in 147 milliseconds