Home
last modified time | relevance | path

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

/external/opencv3/modules/cudaoptflow/src/cuda/
Dfarneback.cu281 float detInv = 1.f / (g11*g22 - g12*g12 + 1e-3f); in updateFlow() local
283 flowx(y, x) = (g11*h2 - g12*h1) * detInv; in updateFlow()
284 flowy(y, x) = (g22*h1 - g12*h2) * detInv; in updateFlow()
/external/opencv3/modules/video/src/opencl/
Doptical_flow_farneback.cl424 float detInv = 1.f / (g11*g22 - g12*g12 + 1e-3f);
426 flowx[mad24(y, xStep, x)] = (g11*h2 - g12*h1) * detInv;
427 flowy[mad24(y, yStep, x)] = (g22*h1 - g12*h2) * detInv;