/external/opencv3/modules/cudalegacy/test/ |
TestHaarCascadeApplication.h | 54 TestHaarCascadeApplication(std::string testName, NCVTestSourceProvider<Ncv8u> &src, 67 NCVTestSourceProvider<Ncv8u> &src;
|
TestIntegralImageSquared.h | 54 TestIntegralImageSquared(std::string testName, NCVTestSourceProvider<Ncv8u> &src, 66 NCVTestSourceProvider<Ncv8u> &src;
|
TestRectStdDev.h | 54 TestRectStdDev(std::string testName, NCVTestSourceProvider<Ncv8u> &src, 67 NCVTestSourceProvider<Ncv8u> &src;
|
TestIntegralImageSquared.cpp | 46 TestIntegralImageSquared::TestIntegralImageSquared(std::string testName_, NCVTestSourceProvider<Ncv8u> &src_, 79 NCVMatrixAlloc<Ncv8u> d_img(*this->allocatorGPU.get(), this->width, this->height); 81 NCVMatrixAlloc<Ncv8u> h_img(*this->allocatorCPU.get(), this->width, this->height); 93 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize);
|
TestIntegralImage.cpp | 97 if (sizeof(T_in) == sizeof(Ncv8u)) 112 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize); 123 if (sizeof(T_in) == sizeof(Ncv8u)) 125 ncvStat = nppiStIntegral_8u32u_C1R((Ncv8u *)d_img.ptr(), d_img.pitch(), 147 if (sizeof(T_in) == sizeof(Ncv8u)) 149 ncvStat = nppiStIntegral_8u32u_C1R_host((Ncv8u *)h_img.ptr(), h_img.pitch(), 176 if (sizeof(T_in) == sizeof(Ncv8u)) 214 template class TestIntegralImage<Ncv8u, Ncv32u>;
|
TestDrawRects.cpp | 126 else if (sizeof(T) == sizeof(Ncv8u)) 128 ncvStat = ncvDrawRects_8u_device((Ncv8u *)d_img.ptr(), d_img.stride(), this->width, this->height, 129 (NcvRect32u *)d_rects.ptr(), this->numRects, (Ncv8u)this->color, 0); 148 else if (sizeof(T) == sizeof(Ncv8u)) 150 ncvStat = ncvDrawRects_8u_host((Ncv8u *)h_img.ptr(), h_img.stride(), this->width, this->height, 151 (NcvRect32u *)h_rects.ptr(), this->numRects, (Ncv8u)this->color); 193 template class TestDrawRects<Ncv8u>;
|
TestRectStdDev.cpp | 46 TestRectStdDev::TestRectStdDev(std::string testName_, NCVTestSourceProvider<Ncv8u> &src_, 98 NCVMatrixAlloc<Ncv8u> d_img(*this->allocatorGPU.get(), this->width, this->height); 100 NCVMatrixAlloc<Ncv8u> h_img(*this->allocatorCPU.get(), this->width, this->height); 126 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize);
|
main_nvidia.cpp | 76 void generateSquaredIntegralTests(NCVAutoTestLister &testLister, NCVTestSourceProvider<Ncv8u> &src, 97 void generateRectStdDevTests(NCVAutoTestLister &testLister, NCVTestSourceProvider<Ncv8u> &src, 217 else if (sizeof(T) == sizeof(Ncv8u)) 271 void generateHaarApplicationTests(NCVAutoTestLister &testLister, NCVTestSourceProvider<Ncv8u> &src, 307 NCVTestSourceProvider<Ncv8u> testSrcRandom_8u(2010, 0, 255, 2048, 2048); 310 generateIntegralTests<Ncv8u, Ncv32u>(testListerII, testSrcRandom_8u, 2048, 2048); 323 NCVTestSourceProvider<Ncv8u> testSrcRandom_8u(2010, 0, 255, 2048, 2048); 337 NCVTestSourceProvider<Ncv8u> testSrcRandom_8u(2010, 0, 255, 2048, 2048); 424 NCVTestSourceProvider<Ncv8u> testSrcFacesVGA_8u(path + "group_1_640x480_VGA.pgm"); 452 NCVTestSourceProvider<Ncv8u> testSrcRandom_8u(2010, 0, 255, 2048, 2048) [all...] |
TestCompact.cpp | 108 NCVVectorAlloc<Ncv8u> d_tmpBuf(*this->allocatorGPU.get(), bufSize);
|
TestHaarCascadeApplication.cpp | 85 TestHaarCascadeApplication::TestHaarCascadeApplication(std::string testName_, NCVTestSourceProvider<Ncv8u> &src_, 169 NCVMatrixAlloc<Ncv8u> d_img(*this->allocatorGPU.get(), this->width, this->height); 171 NCVMatrixAlloc<Ncv8u> h_img(*this->allocatorCPU.get(), this->width, this->height); 206 NCVVectorAlloc<Ncv8u> d_tmpIIbuf(*this->allocatorGPU.get(), std::max(szTmpBufIntegral, szTmpBufSqIntegral));
|
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/ |
NPP_staging.hpp | 701 NCVStatus nppiStIntegral_8u32u_C1R(Ncv8u *d_src, Ncv32u srcStep, 703 Ncv8u *pBuffer, Ncv32u bufSize, cudaDeviceProp &devProp); 713 Ncv8u *pBuffer, Ncv32u bufSize, cudaDeviceProp &devProp); 728 NCVStatus nppiStIntegral_8u32u_C1R_host(Ncv8u *h_src, Ncv32u srcStep, 769 NCVStatus nppiStSqrIntegral_8u64u_C1R(Ncv8u *d_src, Ncv32u srcStep, 771 Ncv8u *pBuffer, Ncv32u bufSize, cudaDeviceProp &devProp); 786 NCVStatus nppiStSqrIntegral_8u64u_C1R_host(Ncv8u *h_src, Ncv32u srcStep, [all...] |
NCV.hpp | 132 typedef unsigned char Ncv8u; 139 Ncv8u x; 140 Ncv8u y; 141 Ncv8u width; 142 Ncv8u height; 144 __host__ __device__ NcvRect8u(Ncv8u x_, Ncv8u y_, Ncv8u width_, Ncv8u height_) : x(x_), y(y_), width(width_), height(height_) {} 218 NCV_CT_ASSERT(sizeof(Ncv8u) == 1) [all...] |
NCVPyramid.hpp | 91 Ncv8u nLayers,
|
NCVHaarObjectDetection.hpp | 87 ((NcvRect8u*)&(this->_ui2.x))->x = (Ncv8u)rectX; 88 ((NcvRect8u*)&(this->_ui2.x))->y = (Ncv8u)rectY; 89 ((NcvRect8u*)&(this->_ui2.x))->width = (Ncv8u)rectWidth; 90 ((NcvRect8u*)&(this->_ui2.x))->height = (Ncv8u)rectHeight; 360 CV_EXPORTS NCVStatus ncvDetectObjectsMultiScale_device(NCVMatrix<Ncv8u> &d_srcImg,
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
NCVPixelOperations.hpp | 51 template<> inline __host__ __device__ Ncv8u _pixMaxVal<Ncv8u>() {return UCHAR_MAX;} 61 template<> inline __host__ __device__ Ncv8u _pixMinVal<Ncv8u>() {return 0;} 71 template<> struct TConvVec2Base<uchar1> {typedef Ncv8u TBase;}; 72 template<> struct TConvVec2Base<uchar3> {typedef Ncv8u TBase;}; 73 template<> struct TConvVec2Base<uchar4> {typedef Ncv8u TBase;}; 90 template<> struct TConvBase2Vec<Ncv8u, 1> {typedef uchar1 TVec;}; 91 template<> struct TConvBase2Vec<Ncv8u, 3> {typedef uchar3 TVec;}; 92 template<> struct TConvBase2Vec<Ncv8u, 4> {typedef uchar4 TVec;} [all...] |
NCV.cu | 157 NCVStatus ncvDrawRects_8u_device(Ncv8u *d_dst, 163 Ncv8u color,
|
NCVPyramid.cu | 195 T *d_src_line1 = (T *)((Ncv8u *)d_src + (2 * i + 0) * srcPitch); 196 T *d_src_line2 = (T *)((Ncv8u *)d_src + (2 * i + 1) * srcPitch); 197 T *d_dst_line = (T *)((Ncv8u *)d_dst + i * dstPitch); 273 T *d_src_line1 = (T *)((Ncv8u *)d_srcTop + yl * srcTopPitch); 274 T *d_src_line2 = (T *)((Ncv8u *)d_srcTop + yh * srcTopPitch); 275 T *d_dst_line = (T *)((Ncv8u *)d_dst + i * dstPitch); 366 Ncv8u numLayers,
|
NPP_staging.cu | 54 texture<Ncv8u, 1, cudaReadModeElementType> tex8u; 230 inline __device__ Ncv8u readElem<Ncv8u>(Ncv8u *d_src, Ncv32u texOffs, Ncv32u srcStride, Ncv32u curElemOffs) 337 cfdTex = cudaCreateChannelDesc<Ncv8u>(); 425 NCVStatus ncvSquaredIntegralImage_device(Ncv8u *d_src, Ncv32u srcStep, 464 <true, Ncv8u, Ncv32u> 495 NCVStatus ncvStat = ncvIntegralImage_device((Ncv8u*)NULL, roiSize.width, 541 NCVStatus nppiStIntegral_8u32u_C1R(Ncv8u *d_src, Ncv32u srcStep, 543 NcvSize32u roiSize, Ncv8u *pBuffer [all...] |
NCVHaarObjectDetection.cu | [all...] |
/external/opencv3/modules/cudalegacy/src/ |
NCV.cpp | 369 allocBegin = (Ncv8u *)malloc(capacity); 377 allocBegin = (Ncv8u *)reusePtr; 382 allocBegin = (Ncv8u *)(0x1); 399 if (!bReusesMemory && (allocBegin != (Ncv8u *)(0x1))) 530 seg.begin.ptr = (Ncv8u *)malloc(size); 867 NCVStatus ncvDrawRects_8u_host(Ncv8u *h_dst, 873 Ncv8u color)
|
/external/opencv3/samples/gpu/ |
cascadeclassifier_nvidia_api.cpp | 102 NCVMatrixAlloc<Ncv8u> d_src(gpuAllocator, width, height); 104 NCVMatrixAlloc<Ncv8u> h_src(cpuAllocator, width, height);
|
/external/opencv3/modules/cudaobjdetect/src/ |
cascadeclassifier.cpp | 288 NCVMatrixAlloc<Ncv8u> d_src(gpuCounter, frameSize.width, frameSize.height); 289 NCVMatrixAlloc<Ncv8u> h_src(cpuCounter, frameSize.width, frameSize.height); 322 src_beg.ptr = (void*)src.ptr<Ncv8u>(); 329 NCVMatrixReuse<Ncv8u> d_src(src_seg, static_cast<int>(devProp.textureAlignment), src.cols, src.rows, static_cast<int>(src.step), true);
|