/external/opencv3/modules/cudalegacy/test/ |
D | TestTranspose.cpp | 82 NCVMatrixAlloc<T> d_img(*this->allocatorGPU.get(), this->width, this->height); in process() local 83 ncvAssertReturn(d_img.isMemAllocated(), false); in process() 99 ncvStat = h_img.copySolid(d_img, 0); in process() 104 ncvStat = nppiStTranspose_32u_C1R((Ncv32u *)d_img.ptr(), d_img.pitch(), in process() 110 ncvStat = nppiStTranspose_64u_C1R((Ncv64u *)d_img.ptr(), d_img.pitch(), in process()
|
D | TestResize.cpp | 93 NCVMatrixAlloc<T> d_img(*this->allocatorGPU.get(), this->width, this->height); in process() local 94 ncvAssertReturn(d_img.isMemAllocated(), false); in process() 110 ncvStat = h_img.copySolid(d_img, 0); in process() 115 ncvStat = nppiStDecimate_32u_C1R((Ncv32u *)d_img.ptr(), d_img.pitch(), in process() 122 ncvStat = nppiStDecimate_64u_C1R((Ncv64u *)d_img.ptr(), d_img.pitch(), in process()
|
D | TestDrawRects.cpp | 87 NCVMatrixAlloc<T> d_img(*this->allocatorGPU.get(), this->width, this->height); in process() local 88 ncvAssertReturn(d_img.isMemAllocated(), false); in process() 102 ncvStat = h_img.copySolid(d_img, 0); in process() 123 …ncvStat = ncvDrawRects_32u_device((Ncv32u *)d_img.ptr(), d_img.stride(), this->width, this->height, in process() 128 … ncvStat = ncvDrawRects_8u_device((Ncv8u *)d_img.ptr(), d_img.stride(), this->width, this->height, in process() 138 ncvStat = d_img.copySolid(h_img_d, 0); in process()
|
D | TestIntegralImage.cpp | 85 NCVMatrixAlloc<T_in> d_img(*this->allocatorGPU.get(), this->width, this->height); in process() local 86 ncvAssertReturn(d_img.isMemAllocated(), false); in process() 120 ncvStat = h_img.copySolid(d_img, 0); in process() 125 ncvStat = nppiStIntegral_8u32u_C1R((Ncv8u *)d_img.ptr(), d_img.pitch(), in process() 133 ncvStat = nppiStIntegral_32f32f_C1R((Ncv32f *)d_img.ptr(), d_img.pitch(), in process()
|
D | TestHaarCascadeApplication.cpp | 169 NCVMatrixAlloc<Ncv8u> d_img(*this->allocatorGPU.get(), this->width, this->height); in process() local 170 ncvAssertReturn(d_img.isMemAllocated(), false); in process() 215 ncvStat = h_img.copySolid(d_img, 0); in process() 219 nppStat = nppiStIntegral_8u32u_C1R(d_img.ptr(), d_img.pitch(), in process() 221 NcvSize32u(d_img.width(), d_img.height()), in process() 225 nppStat = nppiStSqrIntegral_8u64u_C1R(d_img.ptr(), d_img.pitch(), in process() 227 NcvSize32u(d_img.width(), d_img.height()), in process()
|
D | TestIntegralImageSquared.cpp | 79 NCVMatrixAlloc<Ncv8u> d_img(*this->allocatorGPU.get(), this->width, this->height); in process() local 80 ncvAssertReturn(d_img.isMemAllocated(), false); in process() 101 ncvStat = h_img.copySolid(d_img, 0); in process() 104 ncvStat = nppiStSqrIntegral_8u64u_C1R(d_img.ptr(), d_img.pitch(), in process()
|
D | TestRectStdDev.cpp | 98 NCVMatrixAlloc<Ncv8u> d_img(*this->allocatorGPU.get(), this->width, this->height); in process() local 99 ncvAssertReturn(d_img.isMemAllocated(), false); in process() 133 ncvStat = h_img.copySolid(d_img, 0); in process() 136 ncvStat = nppiStIntegral_8u32u_C1R(d_img.ptr(), d_img.pitch(), in process() 142 ncvStat = nppiStSqrIntegral_8u64u_C1R(d_img.ptr(), d_img.pitch(), in process()
|
/external/opencv3/modules/cudaobjdetect/perf/ |
D | perf_objdetect.cpp | 71 const cv::cuda::GpuMat d_img(img); 77 TEST_CYCLE() d_hog->detectMultiScale(d_img, gpu_found_locations); 113 const cv::cuda::GpuMat d_img(img); 116 TEST_CYCLE() d_cascade->detectMultiScale(d_img, objects_buffer); 151 const cv::cuda::GpuMat d_img(img); 154 TEST_CYCLE() d_cascade->detectMultiScale(d_img, objects_buffer);
|
/external/opencv3/modules/cudaimgproc/perf/ |
D | perf_corners.cpp | 76 const cv::cuda::GpuMat d_img(img); 81 TEST_CYCLE() harris->compute(d_img, dst); 118 const cv::cuda::GpuMat d_img(img); 123 TEST_CYCLE() minEigenVal->compute(d_img, dst);
|
/external/opencv3/modules/cudaobjdetect/test/ |
D | test_objdetect.cpp | 183 cv::cuda::GpuMat d_img(img); in CUDA_TEST_P() local 191 hog->compute(d_img, descriptors); in CUDA_TEST_P() 194 hog->compute(d_img, descriptors_by_cols); in CUDA_TEST_P() 242 cv::cuda::GpuMat d_img(img); in CUDA_TEST_P() local 250 d_hog->detectMultiScale(d_img, found_locations); in CUDA_TEST_P()
|
/external/opencv3/modules/cudafeatures2d/perf/ |
D | perf_features2d.cpp | 72 const cv::cuda::GpuMat d_img(img); 75 TEST_CYCLE() d_fast->detectAsync(d_img, d_keypoints); 114 const cv::cuda::GpuMat d_img(img); 117 TEST_CYCLE() d_orb->detectAndComputeAsync(d_img, cv::noArray(), d_keypoints, d_descriptors);
|
/external/opencv3/modules/cudastereo/perf/ |
D | perf_stereo.cpp | 178 const cv::cuda::GpuMat d_img(img); 182 TEST_CYCLE() d_filter->apply(d_disp, d_img, dst);
|
/external/opencv3/samples/gpu/performance/ |
D | tests.cpp | 1076 cuda::GpuMat d_img(img); in TEST() local 1081 canny->detect(d_img, d_edges); in TEST() 1084 canny->detect(d_img, d_edges); in TEST()
|