Lines Matching refs:hypotheses
1470 NcvRect32u *hypotheses, in growDetectionsKernel() argument
1479 hypotheses[elemAddr] = pixelToRect(pixelMask[elemAddr], rectWidth, rectHeight, curScale); in growDetectionsKernel()
1485 NCVVector<NcvRect32u> &hypotheses, 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()
1502 ncvAssertReturn(totalMaxDetections <= hypotheses.length() && in ncvGrowDetectionsVector_device()
1528 hypotheses.ptr() + totalDetections, in ncvGrowDetectionsVector_device()
2070 NCVVector<NcvRect32u> &hypotheses, 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()
2082 ncvAssertReturn(totalMaxDetections <= hypotheses.length() && in ncvGrowDetectionsVector_host()
2102 …hypotheses.ptr()[totalDetections + i] = pixelToRect(pixelMask.ptr()[i], rectWidth, rectHeight, cur… in ncvGrowDetectionsVector_host()