HomeSort by relevance Sort by last modified time
    Searched refs:blockIdx (Results 51 - 75 of 87) sorted by null

1 23 4

  /external/opencv3/modules/cudalegacy/src/cuda/
NPP_staging.cu 232 return tex1Dfetch(tex8u, texOffs + srcStride * blockIdx.x + curElemOffs);
275 d_src += srcStride * blockIdx.x;
278 d_II += IIstride * blockIdx.x;
735 int curX = blockIdx.x * blockDim.x + threadIdx.x;
736 int curY = blockIdx.y * blockDim.y + threadIdx.y;
    [all...]
calib3d.cu 147 const float3* const &rot_mat = crot_matrices + blockIdx.x * 3;
148 const float3 &transl_vec = ctransl_vectors[blockIdx.x];
169 g_num_inliers[blockIdx.x] = num_inliers;
gmg.cu 176 const int x = blockIdx.x * blockDim.x + threadIdx.x;
177 const int y = blockIdx.y * blockDim.y + threadIdx.y;
  /external/opencv3/modules/cudaoptflow/src/cuda/
pyrlk.cu 135 float2 prevPt = prevPts[blockIdx.x];
142 status[blockIdx.x] = 0;
210 status[blockIdx.x] = 0;
221 float2 nextPt = nextPts[blockIdx.x];
233 status[blockIdx.x] = 0;
305 nextPts[blockIdx.x] = nextPt;
308 err[blockIdx.x] = static_cast<float>(errval) / (cn * c_winSize_x * c_winSize_y);
341 const int xBase = blockIdx.x * blockDim.x;
342 const int yBase = blockIdx.y * blockDim.y;
  /external/opencv3/modules/cudafeatures2d/src/cuda/
orb.cu 78 const int ptidx = blockIdx.x * blockDim.y + threadIdx.y;
161 const int ptidx = blockIdx.x * blockDim.y + threadIdx.y;
346 const int descidx = blockIdx.x * blockDim.x + threadIdx.x;
347 const int ptidx = blockIdx.y * blockDim.y + threadIdx.y;
396 const int ptidx = blockIdx.x * blockDim.x + threadIdx.x;
bf_radius_match.cu 64 const int queryIdx = blockIdx.y * BLOCK_SIZE + threadIdx.y;
65 const int trainIdx = blockIdx.x * BLOCK_SIZE + threadIdx.x;
87 ForceGlob<T>::Load(train.ptr(::min(blockIdx.x * BLOCK_SIZE + threadIdx.y, train.rows - 1)), loadX, val);
172 const int queryIdx = blockIdx.y * BLOCK_SIZE + threadIdx.y;
173 const int trainIdx = blockIdx.x * BLOCK_SIZE + threadIdx.x;
194 ForceGlob<T>::Load(train.ptr(::min(blockIdx.x * BLOCK_SIZE + threadIdx.y, train.rows - 1)), loadX, val);
bf_knnmatch.cu 381 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y;
431 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y;
560 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y;
608 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y;
734 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y;
    [all...]
  /external/opencv3/modules/cudastereo/src/cuda/
stereocsbp.cu 90 int x = blockIdx.x * blockDim.x + threadIdx.x;
91 int y = blockIdx.y * blockDim.y + threadIdx.y;
125 int x = blockIdx.x * blockDim.x + threadIdx.x;
126 int y = blockIdx.y * blockDim.y + threadIdx.y;
183 int x = blockIdx.x * blockDim.x + threadIdx.x;
184 int y = blockIdx.y * blockDim.y + threadIdx.y;
225 int x_out = blockIdx.x;
226 int y_out = blockIdx.y % h;
227 int d = (blockIdx.y / h) * blockDim.z + threadIdx.z;
359 int x = blockIdx.x * blockDim.x + threadIdx.x
    [all...]
stereobm.cu 238 //#define X (blockIdx.x * BLOCK_W + threadIdx.x + STEREO_MAXD)
239 int X = (blockIdx.x * BLOCK_W + threadIdx.x + maxdisp + RADIUS);
240 //#define Y (__mul24(blockIdx.y, ROWSperTHREAD) + RADIUS)
241 #define Y (blockIdx.y * ROWSperTHREAD + RADIUS)
242 //int Y = blockIdx.y * ROWSperTHREAD + RADIUS;
377 int x = blockDim.x * blockIdx.x + threadIdx.x;
378 int y = blockDim.y * blockIdx.y + threadIdx.y;
460 int x = blockIdx.x * blockDim.x + threadIdx.x;
461 int beg_row = blockIdx.y * RpT;
disparity_bilateral_filter.cu 82 const int y = blockIdx.y * blockDim.y + threadIdx.y;
83 const int x = ((blockIdx.x * blockDim.x + threadIdx.x) << 1) + ((y + t) & 1);
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
transform.hpp 161 const int x = blockIdx.x * blockDim.x + threadIdx.x;
162 const int y = blockIdx.y * blockDim.y + threadIdx.y;
173 const int x = blockIdx.x * blockDim.x + threadIdx.x;
174 const int y = blockIdx.y * blockDim.y + threadIdx.y;
190 const int x = blockIdx.x * blockDim.x + threadIdx.x;
191 const int y = blockIdx.y * blockDim.y + threadIdx.y;
226 const int x = blockIdx.x * blockDim.x + threadIdx.x;
227 const int y = blockIdx.y * blockDim.y + threadIdx.y;
396 const int x = blockIdx.x * blockDim.x + threadIdx.x;
397 const int y = blockIdx.y * blockDim.y + threadIdx.y
    [all...]
  /external/opencv3/modules/cudawarping/src/cuda/
pyr_down.cu 61 const int x = blockIdx.x * blockDim.x + threadIdx.x;
62 const int y = blockIdx.y;
169 const int dst_x = (blockIdx.x * blockDim.x + tid2) / 2;
resize.cu 59 const int dst_x = blockDim.x * blockIdx.x + threadIdx.x;
60 const int dst_y = blockDim.y * blockIdx.y + threadIdx.y;
75 const int dst_x = blockDim.x * blockIdx.x + threadIdx.x;
76 const int dst_y = blockDim.y * blockIdx.y + threadIdx.y;
110 const int dst_x = blockDim.x * blockIdx.x + threadIdx.x;
111 const int dst_y = blockDim.y * blockIdx.y + threadIdx.y;
124 const int x = blockDim.x * blockIdx.x + threadIdx.x;
125 const int y = blockDim.y * blockIdx.y + threadIdx.y;
  /external/opencv3/modules/cudabgsegm/src/cuda/
mog.cu 122 const int x = blockIdx.x * blockDim.x + threadIdx.x;
123 const int y = blockIdx.y * blockDim.y + threadIdx.y;
199 const int x = blockIdx.x * blockDim.x + threadIdx.x;
200 const int y = blockIdx.y * blockDim.y + threadIdx.y;
368 const int x = blockIdx.x * blockDim.x + threadIdx.x;
369 const int y = blockIdx.y * blockDim.y + threadIdx.y;
mog2.cu 138 const int x = blockIdx.x * blockDim.x + threadIdx.x;
139 const int y = blockIdx.y * blockDim.y + threadIdx.y;
380 const int x = blockIdx.x * blockDim.x + threadIdx.x;
381 const int y = blockIdx.y * blockDim.y + threadIdx.y;
  /external/opencv3/modules/cudacodec/src/cuda/
nv12_to_rgb.cu 120 const int x = blockIdx.x * (blockDim.x << 1) + (threadIdx.x << 1);
121 const int y = blockIdx.y * blockDim.y + threadIdx.y;
  /external/opencv3/modules/cudafilters/src/cuda/
filter2d.cu 59 const int x = blockIdx.x * blockDim.x + threadIdx.x;
60 const int y = blockIdx.y * blockDim.y + threadIdx.y;
column_filter.hpp 76 const int x = blockIdx.x * BLOCK_DIM_X + threadIdx.x;
83 const int yStart = blockIdx.y * (BLOCK_DIM_Y * PATCH_PER_BLOCK) + threadIdx.y;
85 if (blockIdx.y > 0)
100 if (blockIdx.y + 2 < gridDim.y)
row_filter.hpp 76 const int y = blockIdx.y * BLOCK_DIM_Y + threadIdx.y;
83 const int xStart = blockIdx.x * (PATCH_PER_BLOCK * BLOCK_DIM_X) + threadIdx.x;
85 if (blockIdx.x > 0)
100 if (blockIdx.x + 2 < gridDim.x)
  /external/opencv3/modules/cudaimgproc/src/cuda/
bilateral_filter.cu 74 int x = threadIdx.x + blockIdx.x * blockDim.x;
75 int y = threadIdx.y + blockIdx.y * blockDim.y;
hist.cu 59 const int y = blockIdx.x * blockDim.y + threadIdx.y;
128 const int y = blockIdx.x * blockDim.y + threadIdx.y;
hough_segments.cu 62 const int r = blockIdx.x * blockDim.x + threadIdx.x;
63 const int n = blockIdx.y * blockDim.y + threadIdx.y;
  /external/opencv3/modules/stitching/src/cuda/
build_warp_maps.cu 141 int du = blockIdx.x * blockDim.x + threadIdx.x;
142 int dv = blockIdx.y * blockDim.y + threadIdx.y;
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
transform_detail.hpp 214 const int x = threadIdx.x + blockIdx.x * blockDim.x;
215 const int y = threadIdx.y + blockIdx.y * blockDim.y;
246 const int x = blockDim.x * blockIdx.x + threadIdx.x;
247 const int y = blockDim.y * blockIdx.y + threadIdx.y;
264 const int x = threadIdx.x + blockIdx.x * blockDim.x;
265 const int y = threadIdx.y + blockIdx.y * blockDim.y;
299 const int x = blockDim.x * blockIdx.x + threadIdx.x;
300 const int y = blockDim.y * blockIdx.y + threadIdx.y;
  /external/opencv3/modules/cudaarithm/src/cuda/
polar_cart.cu 163 const int x = blockDim.x * blockIdx.x + threadIdx.x;
164 const int y = blockDim.y * blockIdx.y + threadIdx.y;

Completed in 697 milliseconds

1 23 4