Lines Matching refs:Ncv32u
87 Ncv32u width, Ncv32u height,
111 for (Ncv32u i=0; i<(Ncv32u)srcdst->rows; i++)
126 Ncv32u numDetections;
145 for (Ncv32u i=0; i<(Ncv32u)srcdst->rows; i++)
226 NCVMemNativeAllocator gpuCascadeAllocator(NCVMemoryTypeDevice, static_cast<Ncv32u>(devProp.textureAlignment));
228 NCVMemNativeAllocator cpuCascadeAllocator(NCVMemoryTypeHostPinned, static_cast<Ncv32u>(devProp.textureAlignment));
231 Ncv32u haarNumStages, haarNumNodes, haarNumFeatures;
267 NCVMemStackAllocator gpuCounter(static_cast<Ncv32u>(devProp.textureAlignment));
269 NCVMemStackAllocator cpuCounter(static_cast<Ncv32u>(devProp.textureAlignment));
279 NCVMemStackAllocator gpuAllocator(NCVMemoryTypeDevice, gpuCounter.maxSize(), static_cast<Ncv32u>(devProp.textureAlignment));
281 NCVMemStackAllocator cpuAllocator(NCVMemoryTypeHostPinned, cpuCounter.maxSize(), static_cast<Ncv32u>(devProp.textureAlignment));
307 Ncv32u ratioX = preferredVideoFrameSize.width / minSize.width;
308 Ncv32u ratioY = preferredVideoFrameSize.height / minSize.height;
309 Ncv32u ratioSmallest = min(ratioX, ratioY);
310 ratioSmallest = max((Ncv32u)(ratioSmallest / 2.5f), (Ncv32u)1);