Searched refs:frameW (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
D | lbp.cu | 245 …__global__ void lbp_cascade(const Cascade cascade, int frameW, int frameH, int windowW, int window… in lbp_cascade() argument 253 int windowsForLine = (__float2int_rn( __fdividef(frameW, scale)) - windowW) >> step; in lbp_cascade() 262 wshift += __float2int_rn(__fdividef(frameW, scale)) + 1; in lbp_cascade() 265 windowsForLine = ( ((__float2int_rn(__fdividef(frameW, scale)) - windowW) >> step)); in lbp_cascade() 277 if(x >= __float2int_rn(__fdividef(frameW, scale)) - windowW) return; in lbp_cascade() 290 …void classifyPyramid(int frameW, int frameH, int windowW, int windowH, float initialScale, float f… in classifyPyramid() argument 298 …lbp_cascade<<<grid, block>>>(cascade, frameW, frameH, windowW, windowH, initialScale, factor, work… in classifyPyramid()
|
/external/opencv3/modules/cudaobjdetect/src/ |
D | cascadeclassifier.cpp | 378 void classifyPyramid(int frameW,
|