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

  /external/opencv3/modules/cudafeatures2d/src/cuda/
orb.cu 108 int* srow0 = smem0 + 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));
156 int* srow0 = smem0 + threadIdx.y * blockDim.x;
173 reduce<32>(srow0, m_10, threadIdx.x, op);
191 reduce<32>(smem_tuple(srow0, srow1), thrust::tie(v_sum, m_sum), threadIdx.x, thrust::make_tuple(op, op));
  /external/opencv3/modules/video/src/
optflowgf.cpp 137 const float *srow0 = src.ptr<float>(y), *srow1 = 0; local
143 row[x*3] = srow0[x]*g0;
150 srow0 = src.ptr<float>(std::max(y-k,0));
155 float p = srow0[x] + srow1[x];
157 float t1 = row[x*3+1] + g1*(srow1[x] - srow0[x]);
328 const float* srow0 = matM.ptr<float>(); local
330 vsum[x] = srow0[x]*(m+2);
334 srow0 = matM.ptr<float>(std::min(y,height-1));
336 vsum[x] += srow0[x];
345 srow0 = matM.ptr<float>(std::max(y-m-1,0))
    [all...]
lkpyramid.cpp 83 const uchar* srow0 = src.ptr<uchar>(y > 0 ? y-1 : rows > 1 ? 1 : 0); local
93 __m128i s0 = _mm_unpacklo_epi8(_mm_loadl_epi64((const __m128i*)(srow0 + x)), z);
106 uint8x8_t d0 = vld1_u8((const uint8_t*)&srow0[x]);
122 int t0 = (srow0[x] + srow2[x])*3 + srow1[x]*10;
123 int t1 = srow2[x] - srow0[x];
    [all...]
  /external/opencv3/modules/calib3d/src/
stereobm.cpp 209 const uchar* srow0 = y > 0 ? srow1 - src.step : size.height > 1 ? srow1 + src.step : srow1; local
224 uint8x8_t c0 = vld1_u8 (srow0 + x - 1);
226 uint8x8_t d0 = vld1_u8 (srow0 + x + 1);
260 __m128i c0 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow0 + x - 1)), z);
262 __m128i d0 = _mm_unpacklo_epi8(_mm_loadl_epi64((__m128i*)(srow0 + x + 1)), z);
289 int d0 = srow0[x+1] - srow0[x-1], d1 = srow1[x+1] - srow1[x-1],
    [all...]

Completed in 166 milliseconds