Home | History | Annotate | Download | only in cuda

Lines Matching refs:integral

57             __device__ __forceinline__ int operator() (const int* integral, int ty, int fh, int fw, int& shift) const
61 anchors[0] = integral[ty];
62 anchors[1] = integral[ty + fw];
64 anchors[2] = integral[ty + fw * 2];
66 anchors[2] -= integral[ty + fw * 3];
69 anchors[3] = integral[ty];
70 anchors[4] = integral[ty + fw];
72 anchors[5] = integral[ty + fw * 2];
74 anchors[5] -= integral[ty + fw * 3];
82 anchors[6] = integral[ty];
83 anchors[7] = integral[ty + fw];
85 anchors[8] = integral[ty + fw * 2];
87 anchors[8] -= integral[ty + fw * 3];
108 anchors[0] = integral[ty];
109 anchors[1] = integral[ty + fw];
111 anchors[2] = integral[ty + fw * 2];
113 anchors[2] -= integral[ty + fw * 3];
202 __device__ __forceinline__ bool operator() (int y, int x, int* integral, const int pitch) const
217 int c = evaluator(integral, (y + feature.y) * pitch + x + feature.x, feature.w * pitch, feature.z, shift);
246 const int total, int* integral, const int pitch, PtrStepSz<int4> objects, unsigned int* classified)
275 if (cascade(y, x + wshift, integral, pitch))
292 const int subsetSize, PtrStepSz<int4> objects, unsigned int* classified, PtrStepSzi integral)
298 lbp_cascade<<<grid, block>>>(cascade, frameW, frameH, windowW, windowH, initialScale, factor, workAmount, integral.ptr(), (int)integral.step / sizeof(int), objects, classified);