Lines Matching refs:pixelMask
1469 __global__ void growDetectionsKernel(Ncv32u *pixelMask, Ncv32u numElements, in growDetectionsKernel() argument
1479 hypotheses[elemAddr] = pixelToRect(pixelMask[elemAddr], rectWidth, rectHeight, curScale); in growDetectionsKernel()
1483 NCVStatus ncvGrowDetectionsVector_device(NCVVector<Ncv32u> &pixelMask, in ncvGrowDetectionsVector_device() argument
1493 ncvAssertReturn(pixelMask.ptr() != NULL && hypotheses.ptr() != NULL, NCV_NULL_PTR); in ncvGrowDetectionsVector_device()
1495 ncvAssertReturn(pixelMask.memType() == hypotheses.memType() && in ncvGrowDetectionsVector_device()
1496 pixelMask.memType() == NCVMemoryTypeDevice, NCV_MEM_RESIDENCE_ERROR); in ncvGrowDetectionsVector_device()
1503 numPixelMaskDetections <= pixelMask.length() && in ncvGrowDetectionsVector_device()
1527 growDetectionsKernel<<<grid, block, 0, cuStream>>>(pixelMask.ptr(), numDetsToCopy, in ncvGrowDetectionsVector_device()
2068 NCVStatus ncvGrowDetectionsVector_host(NCVVector<Ncv32u> &pixelMask, in ncvGrowDetectionsVector_host() argument
2077 ncvAssertReturn(pixelMask.ptr() != NULL && hypotheses.ptr() != NULL, NCV_NULL_PTR); in ncvGrowDetectionsVector_host()
2078 ncvAssertReturn(pixelMask.memType() == hypotheses.memType() && in ncvGrowDetectionsVector_host()
2079 pixelMask.memType() != NCVMemoryTypeDevice, NCV_MEM_RESIDENCE_ERROR); in ncvGrowDetectionsVector_host()
2083 numPixelMaskDetections <= pixelMask.length() && in ncvGrowDetectionsVector_host()
2102 …hypotheses.ptr()[totalDetections + i] = pixelToRect(pixelMask.ptr()[i], rectWidth, rectHeight, cur… in ncvGrowDetectionsVector_host()