/external/opencv3/modules/cudalegacy/test/ |
D | TestCompact.cpp | 77 NCVVectorAlloc<Ncv32u> h_vecSrc(*this->allocatorCPU.get(), this->length); in process() 79 NCVVectorAlloc<Ncv32u> d_vecSrc(*this->allocatorGPU.get(), this->length); in process() 82 NCVVectorAlloc<Ncv32u> h_vecDst(*this->allocatorCPU.get(), this->length); in process() 84 NCVVectorAlloc<Ncv32u> d_vecDst(*this->allocatorGPU.get(), this->length); in process() 86 NCVVectorAlloc<Ncv32u> h_vecDst_d(*this->allocatorCPU.get(), this->length); in process() 103 NCVVectorAlloc<Ncv32u> h_dstLen(*this->allocatorCPU.get(), 1); in process() 108 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize); in process()
|
D | TestHaarCascadeLoader.cpp | 78 NCVVectorAlloc<HaarStage64> h_HaarStages(*this->allocatorCPU.get(), numStages); in process() 80 NCVVectorAlloc<HaarClassifierNode128> h_HaarNodes(*this->allocatorCPU.get(), numNodes); in process() 82 NCVVectorAlloc<HaarFeature64> h_HaarFeatures(*this->allocatorCPU.get(), numFeatures); in process() 85 NCVVectorAlloc<HaarStage64> h_HaarStages_2(*this->allocatorCPU.get(), numStages); in process() 87 NCVVectorAlloc<HaarClassifierNode128> h_HaarNodes_2(*this->allocatorCPU.get(), numNodes); in process() 89 NCVVectorAlloc<HaarFeature64> h_HaarFeatures_2(*this->allocatorCPU.get(), numFeatures); in process()
|
D | TestHypothesesGrow.cpp | 87 NCVVectorAlloc<Ncv32u> h_vecSrc(*this->allocatorCPU.get(), this->maxLenSrc); in process() 89 NCVVectorAlloc<Ncv32u> d_vecSrc(*this->allocatorGPU.get(), this->maxLenSrc); in process() 92 NCVVectorAlloc<NcvRect32u> h_vecDst(*this->allocatorCPU.get(), this->maxLenDst); in process() 94 NCVVectorAlloc<NcvRect32u> d_vecDst(*this->allocatorGPU.get(), this->maxLenDst); in process() 96 NCVVectorAlloc<NcvRect32u> h_vecDst_d(*this->allocatorCPU.get(), this->maxLenDst); in process()
|
D | TestHaarCascadeApplication.cpp | 121 NCVVectorAlloc<HaarStage64> h_HaarStages(*this->allocatorCPU.get(), numStages); in process() 123 NCVVectorAlloc<HaarClassifierNode128> h_HaarNodes(*this->allocatorCPU.get(), numNodes); in process() 125 NCVVectorAlloc<HaarFeature64> h_HaarFeatures(*this->allocatorCPU.get(), numFeatures); in process() 128 NCVVectorAlloc<HaarStage64> d_HaarStages(*this->allocatorGPU.get(), numStages); in process() 130 NCVVectorAlloc<HaarClassifierNode128> d_HaarNodes(*this->allocatorGPU.get(), numNodes); in process() 132 NCVVectorAlloc<HaarFeature64> d_HaarFeatures(*this->allocatorGPU.get(), numFeatures); in process() 195 NCVVectorAlloc<NcvRect32u> d_hypotheses(*this->allocatorGPU.get(), this->width * this->height); in process() 197 NCVVectorAlloc<NcvRect32u> h_hypotheses(*this->allocatorCPU.get(), this->width * this->height); in process() 206 …NCVVectorAlloc<Ncv8u> d_tmpIIbuf(*this->allocatorGPU.get(), std::max(szTmpBufIntegral, szTmpBufSqI… in process()
|
D | TestHypothesesFilter.cpp | 96 …NCVVectorAlloc<Ncv32u> h_random32u(*this->allocatorCPU.get(), this->numDstRects * sizeof(NcvRect32… in process() 101 NCVVectorAlloc<NcvRect32u> h_vecSrc(*this->allocatorCPU.get(), this->numDstRects*srcSlotSize); in process() 103 NCVVectorAlloc<NcvRect32u> h_vecDst_groundTruth(*this->allocatorCPU.get(), this->numDstRects); in process()
|
D | TestDrawRects.cpp | 94 NCVVectorAlloc<NcvRect32u> d_rects(*this->allocatorGPU.get(), this->numRects); in process() 96 NCVVectorAlloc<NcvRect32u> h_rects(*this->allocatorCPU.get(), this->numRects); in process()
|
D | TestIntegralImageSquared.cpp | 93 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize); in process()
|
D | TestIntegralImage.cpp | 112 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize); in process()
|
D | TestRectStdDev.cpp | 126 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize); in process()
|
/external/opencv3/samples/gpu/ |
D | cascadeclassifier_nvidia_api.cpp | 106 NCVVectorAlloc<NcvRect32u> d_rects(gpuAllocator, 100); in process() 235 NCVVectorAlloc<HaarStage64> h_haarStages(cpuCascadeAllocator, haarNumStages); in main() 237 NCVVectorAlloc<HaarClassifierNode128> h_haarNodes(cpuCascadeAllocator, haarNumNodes); in main() 239 NCVVectorAlloc<HaarFeature64> h_haarFeatures(cpuCascadeAllocator, haarNumFeatures); in main() 247 NCVVectorAlloc<HaarStage64> d_haarStages(gpuCascadeAllocator, haarNumStages); in main() 249 NCVVectorAlloc<HaarClassifierNode128> d_haarNodes(gpuCascadeAllocator, haarNumNodes); in main() 251 NCVVectorAlloc<HaarFeature64> d_haarFeatures(gpuCascadeAllocator, haarNumFeatures); in main()
|
/external/opencv3/modules/cudaobjdetect/src/ |
D | cascadeclassifier.cpp | 143 Ptr<NCVVectorAlloc<HaarStage64> > h_haarStages; 144 Ptr<NCVVectorAlloc<HaarClassifierNode128> > h_haarNodes; 145 Ptr<NCVVectorAlloc<HaarFeature64> > h_haarFeatures; 149 Ptr<NCVVectorAlloc<HaarStage64> > d_haarStages; 150 Ptr<NCVVectorAlloc<HaarClassifierNode128> > d_haarNodes; 151 Ptr<NCVVectorAlloc<HaarFeature64> > d_haarFeatures; 245 h_haarStages.reset (new NCVVectorAlloc<HaarStage64>(*cpuCascadeAllocator, haarNumStages)); in load() 246 …h_haarNodes.reset (new NCVVectorAlloc<HaarClassifierNode128>(*cpuCascadeAllocator, haarNumNodes)… in load() 247 … h_haarFeatures.reset(new NCVVectorAlloc<HaarFeature64>(*cpuCascadeAllocator, haarNumFeatures)); in load() 256 d_haarStages.reset (new NCVVectorAlloc<HaarStage64>(*gpuCascadeAllocator, haarNumStages)); in load() [all …]
|
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/ |
D | NCV.hpp | 629 class NCVVectorAlloc : public NCVVector<T> class 631 NCVVectorAlloc(); 632 NCVVectorAlloc(const NCVVectorAlloc &); 633 NCVVectorAlloc& operator=(const NCVVectorAlloc<T>&); 637 NCVVectorAlloc(INCVMemAllocator &allocator_, Ncv32u length_) in NCVVectorAlloc() function in NCVVectorAlloc 654 ~NCVVectorAlloc() in ~NCVVectorAlloc()
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | NCVHaarObjectDetection.cu | 1024 NCVVectorAlloc<HaarClassifierNode128> h_HaarNodes(cpuAllocator, d_HaarNodes.length); in ncvApplyHaarClassifierCascade_device() 1026 NCVVectorAlloc<HaarFeature64> h_HaarFeatures(cpuAllocator, d_HaarFeatures.length); in ncvApplyHaarClassifierCascade_device() 1071 …NCVVectorAlloc<Ncv32u> d_vecPixelMaskTmp(gpuAllocator, static_cast<Ncv32u>(d_vecPixelMask.length()… in ncvApplyHaarClassifierCascade_device() 1074 NCVVectorAlloc<Ncv32u> hp_pool32u(cpuAllocator, 2); in ncvApplyHaarClassifierCascade_device() 1100 NCVVectorAlloc<Ncv8u> d_tmpBufCompact(gpuAllocator, szNppCompactTmpBuf); in ncvApplyHaarClassifierCascade_device() 1623 …NCVVectorAlloc<NcvRect32u> d_hypothesesIntermediate(gpuAllocator, d_srcImg.width() * d_srcImg.heig… in ncvDetectObjectsMultiScale_device() 1625 …NCVVectorAlloc<NcvRect32u> h_hypothesesIntermediate(cpuAllocator, d_srcImg.width() * d_srcImg.heig… in ncvDetectObjectsMultiScale_device() 1634 NCVVectorAlloc<Ncv8u> d_tmpIIbuf(gpuAllocator, std::max(szTmpBufIntegral, szTmpBufSqIntegral)); in ncvDetectObjectsMultiScale_device()
|
D | NPP_staging.cu | 1415 NCVVectorAlloc<Ncv32u> d_hierSums(gpuAllocator, partSumLastOffs+1); in compactVector_32u_device() 1417 NCVVectorAlloc<Ncv32u> d_numDstElements(gpuAllocator, 1); in compactVector_32u_device()
|
D | NCVBroxOpticalFlow.cu | 70 typedef NCVVectorAlloc<Ncv32f> FloatVector;
|