Home
last modified time | relevance | path

Searched refs:d_pixelMask (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudalegacy/src/cuda/
DNCVHaarObjectDetection.cu959 NCVMatrixAlloc<Ncv32u> &d_pixelMask, in ncvApplyHaarClassifierCascade_device() argument
976 integral.memType() == d_pixelMask.memType() && in ncvApplyHaarClassifierCascade_device()
990 … ncvAssertReturn((integral.ptr() != NULL && d_weights.ptr() != NULL && d_pixelMask.ptr() != NULL && in ncvApplyHaarClassifierCascade_device()
995d_pixelMask.width() >= anchorsRoi.width && d_pixelMask.height() >= anchorsRoi.height && in ncvApplyHaarClassifierCascade_device()
1022 …NCVMatrixAlloc<Ncv32u> h_pixelMask(cpuAllocator, d_pixelMask.width, d_pixelMask.height, d_pixelMas… in ncvApplyHaarClassifierCascade_device()
1029 …NCVMatrixAlloc<Ncv32u> h_pixelMask_d(cpuAllocator, d_pixelMask.width, d_pixelMask.height, d_pixelM… in ncvApplyHaarClassifierCascade_device()
1034 ncvStat = d_pixelMask.copySolid(h_pixelMask, 0); in ncvApplyHaarClassifierCascade_device()
1048 for (Ncv32u j=0; j<d_pixelMask.stride(); j++) in ncvApplyHaarClassifierCascade_device()
1052 …if (!bMaskElements || h_pixelMask.ptr[i*d_pixelMask.stride()+j] != OBJDET_MASK_ELEMENT_INVALID_32U) in ncvApplyHaarClassifierCascade_device()
1054 h_pixelMask.ptr[i*d_pixelMask.stride()+j] = (i << 16) | j; in ncvApplyHaarClassifierCascade_device()
[all …]
/external/opencv3/modules/cudalegacy/test/
DTestHaarCascadeApplication.cpp188 NCVMatrixAlloc<Ncv32u> d_pixelMask(*this->allocatorGPU.get(), this->width, this->height); in process() local
189 ncvAssertReturn(d_pixelMask.isMemAllocated(), false); in process()
286 d_integralImage, d_rectStdDev, d_pixelMask, in process()
302 ncvStat = d_pixelMask.copySolid(h_pixelMask_d, 0); in process()
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
DNCVHaarObjectDetection.hpp389 NCVMatrixAlloc<Ncv32u> &d_pixelMask,