Searched refs:mStep (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/video/src/opencl/ |
D | optical_flow_farneback.cl | 261 __global float * M, int mStep) 342 M[mad24(y, mStep, x)] = r4*r4 + r6*r6; 343 M[mad24(rows + y, mStep, x)] = (r4 + r5)*r6; 344 M[mad24(2*rows + y, mStep, x)] = r5*r5 + r6*r6; 345 M[mad24(3*rows + y, mStep, x)] = r4*r2 + r6*r3; 346 M[mad24(4*rows + y, mStep, x)] = r6*r2 + r5*r3; 408 __kernel void updateFlow(__global const float * M, int mStep, 418 float g11 = M[mad24(y, mStep, x)]; 419 float g12 = M[mad24(rows + y, mStep, x)]; 420 float g22 = M[mad24(2*rows + y, mStep, x)]; [all …]
|
/external/opencv3/samples/cpp/ |
D | autofocus.cpp | 107 int mStep = (lStep + rStep) / 2; in findMinFocusStep() local 109 if (cap.set(CAP_PROP_ZOOM, -direction * mStep)) in findMinFocusStep() 111 rStep = mStep; in findMinFocusStep() 115 lStep = mStep + 1; in findMinFocusStep()
|
/external/opencv3/modules/ml/src/ |
D | em.cpp | 495 mStep(); in doTrain() 516 mStep(); in doTrain() 648 void mStep() in mStep() function in cv::ml::EMImpl
|