Searched refs:tex_src (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/cudev/test/ |
D | test_deriv.cu | 58 Texture<uchar> tex_src(d_src); in TEST() local 60 GpuMat_<short> dx = sobelX_(cvt_<int>(tex_src)); in TEST() 61 GpuMat_<short> dy = sobelY_(cvt_<int>(tex_src)); in TEST() 78 Texture<uchar> tex_src(d_src); in TEST() local 80 GpuMat_<short> dx = scharrX_(cvt_<int>(tex_src)); in TEST() 81 GpuMat_<short> dy = scharrY_(cvt_<int>(tex_src)); in TEST() 98 Texture<uchar> tex_src(d_src); in TEST() local 100 GpuMat_<short> dst1 = laplacian_<1>(cvt_<int>(tex_src)); in TEST() 101 GpuMat_<short> dst3 = laplacian_<3>(cvt_<int>(tex_src)); in TEST()
|
D | test_arithm_op.cu | 104 Texture<T> tex_src(d_src); in test_texptr() local 106 GpuMat_<T> dst = -tex_src; in test_texptr() 189 Texture<T> tex_src(d_src); in test_texptr_scalar() local 191 GpuMat_<T> dst = tex_src + static_cast<T>(5); in test_texptr_scalar() 294 Texture<T> tex_src(d_src); in test_texptr_scalar() local 296 GpuMat_<T> dst = tex_src - static_cast<T>(5); in test_texptr_scalar()
|
D | test_warp.cu | 143 Texture<float> tex_src(d_src); in TEST() local 145 GpuMat_<float> dst1 = resize_(interCubic(tex_src), 2, 2); in TEST() 176 Texture<float> tex_src(d_src); in TEST() local 178 GpuMat_<float> dst1 = resize_(interArea(tex_src, Size(3, 3)), fx, fy); in TEST()
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | canny.cu | 92 …texture<uchar, cudaTextureType2D, cudaReadModeElementType> tex_src(false, cudaFilterModePoint, cud… 101 return tex2D(tex_src, x + xoff, y + yoff); in operator ()() 128 bindTexture(&tex_src, srcWhole); in calcMagnitude()
|