Home
last modified time | relevance | path

Searched refs:texForTF (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/cudastereo/src/cuda/
Dstereobm.cu417 texture<unsigned char, 2, cudaReadModeNormalizedFloat> texForTF; variable
421 … float conv = tex2D(texForTF, x - 1, y - 1) * (-1) + tex2D(texForTF, x + 1, y - 1) * (1) + in sobel()
422 … tex2D(texForTF, x - 1, y ) * (-2) + tex2D(texForTF, x + 1, y ) * (2) + in sobel()
423 tex2D(texForTF, x - 1, y + 1) * (-1) + tex2D(texForTF, x + 1, y + 1) * (1); in sobel()
514 texForTF.filterMode = cudaFilterModeLinear; in postfilter_textureness()
515 texForTF.addressMode[0] = cudaAddressModeWrap; in postfilter_textureness()
516 texForTF.addressMode[1] = cudaAddressModeWrap; in postfilter_textureness()
519 …cudaSafeCall( cudaBindTexture2D( 0, texForTF, input.data, desc, input.cols, input.rows, input.step… in postfilter_textureness()
534 cudaSafeCall( cudaUnbindTexture (texForTF) ); in postfilter_textureness()