Lines Matching refs:prevPts
121 …__global__ void sparseKernel(const float2* prevPts, float2* nextPts, uchar* status, float* err, co… in sparseKernel() argument
135 float2 prevPt = prevPts[blockIdx.x]; in sparseKernel()
313 …void sparse_caller(int rows, int cols, const float2* prevPts, float2* nextPts, uchar* status, floa… in sparse_caller() argument
319 …sparseKernel<cn, PATCH_X, PATCH_Y, true><<<grid, block>>>(prevPts, nextPts, status, err, level, ro… in sparse_caller()
321 …sparseKernel<cn, PATCH_X, PATCH_Y, false><<<grid, block>>>(prevPts, nextPts, status, err, level, r… in sparse_caller()
487 …void sparse1(PtrStepSzf I, PtrStepSzf J, const float2* prevPts, float2* nextPts, uchar* status, fl… in sparse1() argument
490 …typedef void (*func_t)(int rows, int cols, const float2* prevPts, float2* nextPts, uchar* status, … in sparse1()
505 funcs[patch.y - 1][patch.x - 1](I.rows, I.cols, prevPts, nextPts, status, err, ptcount, in sparse1()
509 …void sparse4(PtrStepSz<float4> I, PtrStepSz<float4> J, const float2* prevPts, float2* nextPts, uch… in sparse4() argument
512 …typedef void (*func_t)(int rows, int cols, const float2* prevPts, float2* nextPts, uchar* status, … in sparse4()
527 funcs[patch.y - 1][patch.x - 1](I.rows, I.cols, prevPts, nextPts, status, err, ptcount, in sparse4()