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

  /external/opencv3/modules/cudaimgproc/src/cuda/
debayer.cu 212 const int d_x = (blockIdx.x * blockDim.x + threadIdx.x) << 2;
215 dst(d_y, d_x) = toDst<D>(bayer.res0);
216 if (d_x + 1 < src.cols)
217 dst(d_y, d_x + 1) = toDst<D>(bayer.res1);
218 if (d_x + 2 < src.cols)
219 dst(d_y, d_x + 2) = toDst<D>(bayer.res2);
220 if (d_x + 3 < src.cols)
221 dst(d_y, d_x + 3) = toDst<D>(bayer.res3);
334 const int d_x = (blockIdx.x * blockDim.x + threadIdx.x) << 1;
337 dst(d_y, d_x) = toDst<D>(bayer.res0)
    [all...]
  /external/opencv3/samples/gpu/performance/
tests.cpp 440 cuda::GpuMat d_x, d_y, d_mag; local
455 d_x.upload(x);
458 cuda::magnitude(d_x, d_y, d_mag);
461 cuda::magnitude(d_x, d_y, d_mag);

Completed in 3625 milliseconds