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