Home
last modified time | relevance | path

Searched refs:sumx (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/cudalegacy/src/cuda/
Dbm.cu96 int sumx = offX; in calcOptFlowBM() local
117 sumx = dx; in calcOptFlowBM()
126 sumx = dx; in calcOptFlowBM()
132 sumx += dx; in calcOptFlowBM()
141 sumx = offX; in calcOptFlowBM()
147 velx(i, j) = static_cast<float>(sumx) / countMin; in calcOptFlowBM()
/external/opencv3/modules/video/src/opencl/
Doptical_flow_tvl1.cl113 float sumx = 0.0f;
125 //sumx += w * tex2D(tex_I1x, cx, cy);
126 sumx += w * read_imagef(tex_I1x, sampleri, cood).x;
134 float I1wxVal = sumx * coeff;
193 float sumx = 0.0f;
205 sumx += w * readImage(tex_I1x, cood.x, cood.y, I0_col, I0_row, I1x_step);
214 float I1wxVal = sumx * coeff;
/external/opencv/cv/src/
Dcvsurf.cpp389 float sumx = 0, sumy = 0, temp_mod; in cvExtractSURF() local
395 sumx += X[j]; in cvExtractSURF()
399 temp_mod = sumx*sumx + sumy*sumy; in cvExtractSURF()
403 bestx = sumx; in cvExtractSURF()
/external/opencv3/modules/cudaoptflow/src/cuda/
Dtvl1flow.cu129 float sumx = 0.0f; in warpBackwardKernel() local
140 sumx += w * tex2D(tex_I1x, cx, cy); in warpBackwardKernel()
150 const float I1wxVal = sumx * coeff; in warpBackwardKernel()
/external/libgdx/gdx/src/com/badlogic/gdx/math/collision/
DBoundingBox.java288 float sumx = (this.dim.x / 2.0f) + (b.dim.x / 2.0f); in intersects() local
296 return (lx <= sumx && ly <= sumy && lz <= sumz); in intersects()