OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NCVVectorAlloc
(Results
1 - 15
of
15
) sorted by null
/external/opencv3/modules/cudalegacy/test/
TestCompact.cpp
77
NCVVectorAlloc
<Ncv32u> h_vecSrc(*this->allocatorCPU.get(), this->length);
79
NCVVectorAlloc
<Ncv32u> d_vecSrc(*this->allocatorGPU.get(), this->length);
82
NCVVectorAlloc
<Ncv32u> h_vecDst(*this->allocatorCPU.get(), this->length);
84
NCVVectorAlloc
<Ncv32u> d_vecDst(*this->allocatorGPU.get(), this->length);
86
NCVVectorAlloc
<Ncv32u> h_vecDst_d(*this->allocatorCPU.get(), this->length);
103
NCVVectorAlloc
<Ncv32u> h_dstLen(*this->allocatorCPU.get(), 1);
108
NCVVectorAlloc
<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize);
TestHaarCascadeLoader.cpp
78
NCVVectorAlloc
<HaarStage64> h_HaarStages(*this->allocatorCPU.get(), numStages);
80
NCVVectorAlloc
<HaarClassifierNode128> h_HaarNodes(*this->allocatorCPU.get(), numNodes);
82
NCVVectorAlloc
<HaarFeature64> h_HaarFeatures(*this->allocatorCPU.get(), numFeatures);
85
NCVVectorAlloc
<HaarStage64> h_HaarStages_2(*this->allocatorCPU.get(), numStages);
87
NCVVectorAlloc
<HaarClassifierNode128> h_HaarNodes_2(*this->allocatorCPU.get(), numNodes);
89
NCVVectorAlloc
<HaarFeature64> h_HaarFeatures_2(*this->allocatorCPU.get(), numFeatures);
TestHypothesesGrow.cpp
87
NCVVectorAlloc
<Ncv32u> h_vecSrc(*this->allocatorCPU.get(), this->maxLenSrc);
89
NCVVectorAlloc
<Ncv32u> d_vecSrc(*this->allocatorGPU.get(), this->maxLenSrc);
92
NCVVectorAlloc
<NcvRect32u> h_vecDst(*this->allocatorCPU.get(), this->maxLenDst);
94
NCVVectorAlloc
<NcvRect32u> d_vecDst(*this->allocatorGPU.get(), this->maxLenDst);
96
NCVVectorAlloc
<NcvRect32u> h_vecDst_d(*this->allocatorCPU.get(), this->maxLenDst);
TestHaarCascadeApplication.cpp
121
NCVVectorAlloc
<HaarStage64> h_HaarStages(*this->allocatorCPU.get(), numStages);
123
NCVVectorAlloc
<HaarClassifierNode128> h_HaarNodes(*this->allocatorCPU.get(), numNodes);
125
NCVVectorAlloc
<HaarFeature64> h_HaarFeatures(*this->allocatorCPU.get(), numFeatures);
128
NCVVectorAlloc
<HaarStage64> d_HaarStages(*this->allocatorGPU.get(), numStages);
130
NCVVectorAlloc
<HaarClassifierNode128> d_HaarNodes(*this->allocatorGPU.get(), numNodes);
132
NCVVectorAlloc
<HaarFeature64> d_HaarFeatures(*this->allocatorGPU.get(), numFeatures);
195
NCVVectorAlloc
<NcvRect32u> d_hypotheses(*this->allocatorGPU.get(), this->width * this->height);
197
NCVVectorAlloc
<NcvRect32u> h_hypotheses(*this->allocatorCPU.get(), this->width * this->height);
206
NCVVectorAlloc
<Ncv8u> d_tmpIIbuf(*this->allocatorGPU.get(), std::max(szTmpBufIntegral, szTmpBufSqIntegral));
TestHypothesesFilter.cpp
96
NCVVectorAlloc
<Ncv32u> h_random32u(*this->allocatorCPU.get(), this->numDstRects * sizeof(NcvRect32u) / sizeof(Ncv32u));
101
NCVVectorAlloc
<NcvRect32u> h_vecSrc(*this->allocatorCPU.get(), this->numDstRects*srcSlotSize);
103
NCVVectorAlloc
<NcvRect32u> h_vecDst_groundTruth(*this->allocatorCPU.get(), this->numDstRects);
TestIntegralImageSquared.cpp
93
NCVVectorAlloc
<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize);
TestDrawRects.cpp
94
NCVVectorAlloc
<NcvRect32u> d_rects(*this->allocatorGPU.get(), this->numRects);
96
NCVVectorAlloc
<NcvRect32u> h_rects(*this->allocatorCPU.get(), this->numRects);
TestIntegralImage.cpp
112
NCVVectorAlloc
<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize);
TestRectStdDev.cpp
126
NCVVectorAlloc
<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize);
/external/opencv3/samples/gpu/
cascadeclassifier_nvidia_api.cpp
106
NCVVectorAlloc
<NcvRect32u> d_rects(gpuAllocator, 100);
235
NCVVectorAlloc
<HaarStage64> h_haarStages(cpuCascadeAllocator, haarNumStages);
237
NCVVectorAlloc
<HaarClassifierNode128> h_haarNodes(cpuCascadeAllocator, haarNumNodes);
239
NCVVectorAlloc
<HaarFeature64> h_haarFeatures(cpuCascadeAllocator, haarNumFeatures);
247
NCVVectorAlloc
<HaarStage64> d_haarStages(gpuCascadeAllocator, haarNumStages);
249
NCVVectorAlloc
<HaarClassifierNode128> d_haarNodes(gpuCascadeAllocator, haarNumNodes);
251
NCVVectorAlloc
<HaarFeature64> d_haarFeatures(gpuCascadeAllocator, haarNumFeatures);
/external/opencv3/modules/cudaobjdetect/src/
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));
246
h_haarNodes.reset (new
NCVVectorAlloc
<HaarClassifierNode128>(*cpuCascadeAllocator, haarNumNodes));
247
h_haarFeatures.reset(new
NCVVectorAlloc
<HaarFeature64>(*cpuCascadeAllocator, haarNumFeatures));
256
d_haarStages.reset (new
NCVVectorAlloc
<HaarStage64>(*gpuCascadeAllocator, haarNumStages))
[
all
...]
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
NCV.hpp
626
*
NCVVectorAlloc
629
class
NCVVectorAlloc
: public NCVVector<T>
631
NCVVectorAlloc
();
632
NCVVectorAlloc
(const
NCVVectorAlloc
&);
633
NCVVectorAlloc
& operator=(const
NCVVectorAlloc
<T>&);
637
NCVVectorAlloc
(INCVMemAllocator &allocator_, Ncv32u length_)
647
ncvAssertPrintReturn(ncvStat == NCV_SUCCESS, "
NCVVectorAlloc
ctor:: alloc failed", );
654
~
NCVVectorAlloc
()
[
all
...]
/external/opencv3/modules/cudalegacy/src/cuda/
NCVHaarObjectDetection.cu
[
all
...]
NPP_staging.cu
[
all
...]
NCVBroxOpticalFlow.cu
70
typedef
NCVVectorAlloc
<Ncv32f> FloatVector;
[
all
...]
Completed in 132 milliseconds