HomeSort by relevance Sort by last modified time
    Searched refs:d_y (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/cudaimgproc/src/cuda/
debayer.cu 213 const int d_y = blockIdx.y * blockDim.y + threadIdx.y;
215 dst(d_y, d_x) = toDst<D>(bayer.res0);
217 dst(d_y, d_x + 1) = toDst<D>(bayer.res1);
219 dst(d_y, d_x + 2) = toDst<D>(bayer.res2);
221 dst(d_y, d_x + 3) = toDst<D>(bayer.res3);
335 const int d_y = blockIdx.y * blockDim.y + threadIdx.y;
337 dst(d_y, d_x) = toDst<D>(bayer.res0);
339 dst(d_y, d_x + 1) = toDst<D>(bayer.res1);
  /external/opencv3/samples/gpu/performance/
tests.cpp 440 cuda::GpuMat d_x, d_y, d_mag; local
456 d_y.upload(y);
458 cuda::magnitude(d_x, d_y, d_mag);
461 cuda::magnitude(d_x, d_y, d_mag);

Completed in 551 milliseconds