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

  /external/opencv3/modules/cudafeatures2d/src/cuda/
orb.cu 110 int* srow2 = smem2 + threadIdx.y * blockDim.x;
113 reduce<32>(smem_tuple(srow0, srow1, srow2), thrust::tie(a, b, c), threadIdx.x, thrust::make_tuple(op, op, op));
  /external/opencv3/modules/calib3d/src/
stereobm.cpp 210 const uchar* srow2 = y < size.height-1 ? srow1 + src.step : size.height > 1 ? srow1 - src.step : srow1; local
232 uint8x8_t c2 = vld1_u8 (srow2 + x - 1);
234 uint8x8_t d2 = vld1_u8 (srow2 + x + 1);
268 __m128i c2 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow2 + x - 1)), z);
270 __m128i d2 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow2 + x + 1)), z);
290 d2 = srow2[x+1] - srow2[x-1], d3 = srow3[x+1] - srow3[x-1];
    [all...]
  /external/opencv3/modules/video/src/
lkpyramid.cpp 85 const uchar* srow2 = src.ptr<uchar>(y < rows-1 ? y+1 : rows > 1 ? rows-2 : 0); local
95 __m128i s2 = _mm_unpacklo_epi8(_mm_loadl_epi64((const __m128i*)(srow2 + x)), z);
108 uint8x8_t d2 = vld1_u8((const uint8_t*)&srow2[x]);
122 int t0 = (srow0[x] + srow2[x])*3 + srow1[x]*10;
123 int t1 = srow2[x] - srow0[x];
    [all...]

Completed in 3952 milliseconds